aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-01-13 23:53:01 -0800
committerGravatar Vijay Pai <vpai@google.com>2018-01-21 21:04:38 -0800
commite1e7042919f698c2c3ea9a507c84b0ec859ed547 (patch)
treef08839c2341c79000eea5d26beec7b67fc4ef287 /include/grpc++
parent28b6a446376b6545debe385c271de81c50c8867f (diff)
Restructure to simplify, harden, and avoid forward declaration
Diffstat (limited to 'include/grpc++')
-rw-r--r--include/grpc++/alarm.h6
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