Skip to content

Commit

Permalink
Fix release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
pcgod committed Sep 4, 2010
1 parent 1421b88 commit d4a4259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const LogSeverity LOG_NUM_SEVERITIES = 4;
#if !defined(NDEBUG)
#define DLOG(severity) MC_LOG_ ## severity.stream()
#else
#define DLOG(severity) true ? 0 : logging::LogMessageVoidify() & LOG(severity)
#define DLOG(severity) true ? 0 : ::MumbleClient::logging::LogMessageVoidify() & LOG(severity)
#endif

class LogMessage {
Expand Down

0 comments on commit d4a4259

Please sign in to comment.