From: Michal Jarzabek Date: Fri, 18 Dec 2015 22:17:55 +0000 (+0000) Subject: msg/Message.h:remove unneeded inline X-Git-Tag: v10.0.3~99^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=96563fb5b7ef1723ce43ec17ce16e35aafabda44;p=ceph.git msg/Message.h:remove unneeded inline Member functions defined within class are implicitly inline. Signed-off-by: Michal Jarzabek --- 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; }