Use NULL instead of 0.

This commit is contained in:
Mark de Wever 2012-04-01 08:23:04 +00:00
parent 53f9a312bb
commit 4f6b1f5391

View file

@ -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);