Use NULL instead of 0.
This commit is contained in:
parent
53f9a312bb
commit
4f6b1f5391
1 changed files with 2 additions and 2 deletions
|
@ -106,14 +106,14 @@ class scope_logger
|
|||
public:
|
||||
scope_logger(log_domain const &domain, const char* str) :
|
||||
ticks_(0),
|
||||
output_(0),
|
||||
output_(NULL),
|
||||
str_()
|
||||
{
|
||||
if (!debug.dont_log(domain)) do_log_entry(domain, str);
|
||||
}
|
||||
scope_logger(log_domain const &domain, const std::string& str) :
|
||||
ticks_(0),
|
||||
output_(0),
|
||||
output_(NULL),
|
||||
str_()
|
||||
{
|
||||
if (!debug.dont_log(domain)) do_log_entry(domain, str);
|
||||
|
|
Loading…
Add table
Reference in a new issue