mirror of
https://github.com/gabime/spdlog.git
synced 2024-12-26 10:31:34 +08:00
Merge pull request #304 from chenhayat/vs2013_fix
Fix compilation error C2664 on VS2013
This commit is contained in:
commit
8c67d6e05e
@ -15,7 +15,10 @@ namespace sinks
|
||||
class sink
|
||||
{
|
||||
public:
|
||||
sink(): _level( level::trace ) {}
|
||||
sink()
|
||||
{
|
||||
_level = level::trace;
|
||||
}
|
||||
|
||||
virtual ~sink() {}
|
||||
virtual void log(const details::log_msg& msg) = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user