diff options
author | ncteisen <ncteisen@gmail.com> | 2018-07-16 21:43:59 -0700 |
---|---|---|
committer | ncteisen <ncteisen@gmail.com> | 2018-07-16 21:43:59 -0700 |
commit | d5bd4274660b603b802c542d6af264f72fbd034d (patch) | |
tree | 52ea97ff9c9aa0539e5eb7b2c58430319a4cd15a /src/core/ext | |
parent | c0f110b398751375d9bf1aeaf3d8ae1812ba60e3 (diff) |
Fix the alignment problem, still messy
Diffstat (limited to 'src/core/ext')
-rw-r--r-- | src/core/ext/filters/client_channel/lb_policy.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/ext/filters/client_channel/lb_policy.h b/src/core/ext/filters/client_channel/lb_policy.h index d525721ec0..7bc224ad81 100644 --- a/src/core/ext/filters/client_channel/lb_policy.h +++ b/src/core/ext/filters/client_channel/lb_policy.h @@ -205,6 +205,11 @@ class LoadBalancingPolicy grpc_pollset_set* interested_parties_; /// Callback to force a re-resolution. grpc_closure* request_reresolution_; + + // Dummy classes needed for alignment issues. + // See https://github.com/grpc/grpc/issues/16032 for context. + ChildRefsList dummy_list_foo; + ChildRefsList dummy_list_bar; }; } // namespace grpc_core |