1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix for last ASIO check-in.

This commit is contained in:
jules 2012-11-27 15:00:22 +00:00
parent b529f4df48
commit 1252f0aed0

View file

@ -65,8 +65,9 @@ namespace ASIODebugging
logMessage ("ASIO error: " + context + " - " + err);
}
#else
#define JUCE_ASIO_LOG(a) {}
#define JUCE_ASIO_LOG_ERROR(a, b) {}
static void dummyLog() {}
#define JUCE_ASIO_LOG(a) ASIODebugging::dummyLog()
#define JUCE_ASIO_LOG_ERROR(a, b) ASIODebugging::dummyLog()
#endif
}