diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-06-07 17:17:52 -0700 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-06-07 17:17:52 -0700 |
commit | 519d57deadc46bd5b48b37cd1a28882425d8e204 (patch) | |
tree | 7ad9238673d675f0fd3a2b3c52f0dba97735a305 /src | |
parent | 5044feb835653ba98ee48cf243fe5d3ab184fa3c (diff) |
Fixing DEBUG vs _DEBUG #defines.
Diffstat (limited to 'src')
-rw-r--r-- | src/Printer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Printer.cc b/src/Printer.cc index 7eb02d8..604eca1 100644 --- a/src/Printer.cc +++ b/src/Printer.cc @@ -17,7 +17,7 @@ static const char * prefixes[] = { }; Balau::Printer::Printer() { -#ifdef DEBUG +#ifdef _DEBUG m_detailledLogs = true; #endif if (!localPrinter.getGlobal()) |