aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/alarm.h
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-11-02 22:02:47 -0700
committerGravatar GitHub <noreply@github.com>2016-11-02 22:02:47 -0700
commitb37ace5d279925ecd7f8dd6dca03e20cb066ae50 (patch)
tree09e1654e0819011d955682d09909c0d77665fa9a /include/grpc++/alarm.h
parent9895a56cd2d90aa587f405d0eabe01794a5b633a (diff)
parenta189b7b9f144ae811a5e725b102acb06cab31b89 (diff)
Merge pull request #8602 from vjpai/turn_it_to_11
Stop supporting non-C++11 conformant compilers - DO NOT MERGE INTO V1.0.X
Diffstat (limited to 'include/grpc++/alarm.h')
-rw-r--r--include/grpc++/alarm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpc++/alarm.h b/include/grpc++/alarm.h
index 1470fe8d97..9a15167cc7 100644
--- a/include/grpc++/alarm.h
+++ b/include/grpc++/alarm.h
@@ -78,7 +78,7 @@ class Alarm : private GrpcLibraryCodegen {
class AlarmEntry : public CompletionQueueTag {
public:
AlarmEntry(void* tag) : tag_(tag) {}
- bool FinalizeResult(void** tag, bool* status) GRPC_OVERRIDE {
+ bool FinalizeResult(void** tag, bool* status) override {
*tag = tag_;
return true;
}