summaryrefslogtreecommitdiff
path: root/lib/cpp/src/thrift/transport/TPipeServer.h
diff options
context:
space:
mode:
authorcyy <cyyever@outlook.com>2019-01-13 16:01:43 +0800
committercyy <cyyever@outlook.com>2019-01-22 10:36:18 +0800
commitc349cdb2952497c5a1ecbf1dae84e2ce5aa6db1d (patch)
treecfb1405954889c2d02dabe7c091f9e2e0b75aae3 /lib/cpp/src/thrift/transport/TPipeServer.h
parentfc222b3a8741eda6f4ec874cf7e7d7b5c69ee630 (diff)
downloadthrift-c349cdb2952497c5a1ecbf1dae84e2ce5aa6db1d.tar.gz
add override and const
Diffstat (limited to 'lib/cpp/src/thrift/transport/TPipeServer.h')
-rw-r--r--lib/cpp/src/thrift/transport/TPipeServer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/cpp/src/thrift/transport/TPipeServer.h b/lib/cpp/src/thrift/transport/TPipeServer.h
index c9b13e5a6..871b6afab 100644
--- a/lib/cpp/src/thrift/transport/TPipeServer.h
+++ b/lib/cpp/src/thrift/transport/TPipeServer.h
@@ -60,9 +60,9 @@ public:
virtual ~TPipeServer();
// Standard transport callbacks
- virtual void interrupt();
- virtual void close();
- virtual void listen();
+ void interrupt() override;
+ void close() override;
+ void listen() override;
// Accessors
std::string getPipename();