mirror of
https://github.com/gabime/spdlog.git
synced 2025-10-02 03:19:02 +08:00
Replaced throw() with noexcept and removed some unneeded ';'.
This commit is contained in:
@@ -71,8 +71,8 @@ inline const char* to_str(spdlog::level::level_enum l)
|
||||
class spdlog_ex : public std::exception
|
||||
{
|
||||
public:
|
||||
spdlog_ex(const std::string& msg) :_msg(msg) {};
|
||||
const char* what() const throw() override
|
||||
spdlog_ex(const std::string& msg) :_msg(msg) {}
|
||||
const char* what() const noexcept override
|
||||
{
|
||||
return _msg.c_str();
|
||||
}
|
||||
|
Reference in New Issue
Block a user