Browse Source

Added a flag JUCE_DISABLE_ASSERTIONS to allow assertions to be disabled even in a debug build

tags/2021-05-28
jules 9 years ago
parent
commit
9241028eda
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/system/juce_PlatformDefs.h

+ 1
- 1
modules/juce_core/system/juce_PlatformDefs.h View File

@@ -109,7 +109,7 @@
#endif
//==============================================================================
#if JUCE_DEBUG || DOXYGEN
#if (JUCE_DEBUG && ! JUCE_DISABLE_ASSERTIONS) || DOXYGEN
/** Writes a string to the standard error stream.
Note that as well as a single string, you can use this to write multiple items
as a stream, e.g.


Loading…
Cancel
Save