Skip to content

Commit

Permalink
Merge pull request #10071 from stiopaa1/compatset_removeUnneededInlin…
Browse files Browse the repository at this point in the history
…e_mc

CompatSet.h: remove unneeded inline

Reviewed-by: Sage Weil <sage@redhat.com>
  • Loading branch information
liewegas committed Sep 18, 2016
2 parents b75a51a + d1339d8 commit aa0c1b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/CompatSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,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;
Expand Down

0 comments on commit aa0c1b3

Please sign in to comment.