Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Marsev <alex.marsev@gmail.com>2016-02-21 04:42:52 +0300
committerAlex Marsev <alex.marsev@gmail.com>2016-02-21 09:08:30 +0300
commitb1ddc6f91e965bec52fef8933af09f95a4f62710 (patch)
tree99877a23da1e3334049c4454972d68c30ff2ed3f
parent8c007789f6ac60e33f3cc26200b8b301755a177a (diff)
Use braces in the empty DebugOut() macro
Fixes a warning, is generally more safe.
-rw-r--r--src/Utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.h b/src/Utils.h
index 94aec10..51098ec 100644
--- a/src/Utils.h
+++ b/src/Utils.h
@@ -118,7 +118,7 @@ namespace SaneAudioRenderer
#ifndef NDEBUG
# define DebugOut(...) DebugOutBody(##__VA_ARGS__)
#else
- # define DebugOut(...)
+ # define DebugOut(...) {}
#endif
template <class T>