From d1339d88db78b64fbdbce0efcc3ba230b1a46c3d Mon Sep 17 00:00:00 2001 From: Michal Jarzabek Date: Sun, 15 May 2016 09:42:30 +0100 Subject: [PATCH] CompatSet.h: remove unneeded inline All member functions defined inside class definition are inline. Signed-off-by: Michal Jarzabek --- src/include/CompatSet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3