]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
CompatSet.h: remove unneeded inline 10071/head
authorMichal Jarzabek <stiopa@gmail.com>
Sun, 15 May 2016 08:42:30 +0000 (09:42 +0100)
committerMichal Jarzabek <stiopa@gmail.com>
Sun, 15 May 2016 08:42:30 +0000 (09:42 +0100)
All member functions defined inside class definition are inline.

Signed-off-by: Michal Jarzabek <stiopa@gmail.com>
src/include/CompatSet.h

index 43c1ec1603b944ca27591444c6208ddc1a8e5e14..157fbff8b853313b6dd46302a98fab36884e555e 100644 (file)
@@ -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<uint64_t, std::string>::const_iterator i = names.find(f);
       assert(i != names.end());
       return i->second;