This commit is contained in:
gabime
2014-11-01 02:28:49 +02:00
parent 1c7b3e4eb2
commit e8403e17df
11 changed files with 42 additions and 25 deletions

View File

@@ -6,7 +6,8 @@
namespace spdlog
{
class formatter;
namespace sinks {
namespace sinks
{
class sink;
}
@@ -45,7 +46,8 @@ class spdlog_ex : public std::exception
{
public:
spdlog_ex(const std::string& msg) :_msg(msg) {};
const char* what() const throw() override {
const char* what() const throw() override
{
return _msg.c_str();
}
private: