modernize-use-override

This commit is contained in:
Daniel Chabrowski
2018-02-24 23:56:56 +01:00
parent 7f4c1bb77c
commit fb6df0512f
15 changed files with 38 additions and 42 deletions

View File

@@ -136,7 +136,7 @@ namespace os
std::string errno_str(int err_num);
}
}
class spdlog_ex: public std::exception
class spdlog_ex : public std::exception
{
public:
spdlog_ex(const std::string& msg):_msg(msg)
@@ -149,9 +149,9 @@ public:
{
return _msg.c_str();
}
private:
std::string _msg;
};
//