From: Michal Jarzabek Date: Sun, 15 May 2016 08:42:30 +0000 (+0100) Subject: CompatSet.h: remove unneeded inline X-Git-Tag: v11.0.1~190^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d1339d88db78b64fbdbce0efcc3ba230b1a46c3d;p=ceph.git CompatSet.h: remove unneeded inline All member functions defined inside class definition are inline. Signed-off-by: Michal Jarzabek --- diff --git a/src/include/CompatSet.h b/src/include/CompatSet.h index 43c1ec1603b9..157fbff8b853 100644 --- a/src/include/CompatSet.h +++ b/src/include/CompatSet.h @@ -57,7 +57,7 @@ struct CompatSet { /** * Getter instead of using name[] to be const safe */ - inline std::string get_name(uint64_t const f) const { + std::string get_name(uint64_t const f) const { std::map::const_iterator i = names.find(f); assert(i != names.end()); return i->second;