From 96563fb5b7ef1723ce43ec17ce16e35aafabda44 Mon Sep 17 00:00:00 2001 From: Michal Jarzabek Date: Fri, 18 Dec 2015 22:17:55 +0000 Subject: [PATCH] msg/Message.h:remove unneeded inline Member functions defined within class are implicitly inline. Signed-off-by: Michal Jarzabek --- src/msg/Message.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msg/Message.h b/src/msg/Message.h index ddba0e57a896..47049de21fa9 100644 --- a/src/msg/Message.h +++ b/src/msg/Message.h @@ -301,7 +301,7 @@ protected: completion_hook->complete(0); } public: - inline const ConnectionRef& get_connection() const { return connection; } + const ConnectionRef& get_connection() const { return connection; } void set_connection(const ConnectionRef& c) { connection = c; } -- 2.47.3