diff options
author | Vijay Pai <vpai@google.com> | 2018-01-13 23:53:01 -0800 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2018-01-21 21:04:38 -0800 |
commit | e1e7042919f698c2c3ea9a507c84b0ec859ed547 (patch) | |
tree | f08839c2341c79000eea5d26beec7b67fc4ef287 /include | |
parent | 28b6a446376b6545debe385c271de81c50c8867f (diff) |
Restructure to simplify, harden, and avoid forward declaration
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc++/alarm.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/grpc++/alarm.h b/include/grpc++/alarm.h index 4660b04cfa..37d4189201 100644 --- a/include/grpc++/alarm.h +++ b/include/grpc++/alarm.h @@ -30,10 +30,6 @@ namespace grpc { -namespace internal { -class AlarmImpl; -} - /// A thin wrapper around \a grpc_alarm (see / \a / src/core/surface/alarm.h). class Alarm : private GrpcLibraryCodegen { public: @@ -83,7 +79,7 @@ class Alarm : private GrpcLibraryCodegen { private: void SetInternal(CompletionQueue* cq, gpr_timespec deadline, void* tag); - internal::AlarmImpl* alarm_; + internal::CompletionQueueTag* alarm_; }; } // namespace grpc |