We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f777aa2 commit 061e063Copy full SHA for 061e063
Source/PluginTests.cpp
@@ -13,8 +13,10 @@
13
==============================================================================*/
14
15
#include "PluginTests.h"
16
+
17
#include "TestUtilities.h"
18
#include <random>
19
+#include <cassert>
20
21
juce::String getDisplayString (RealtimeCheck rtc)
22
{
@@ -26,6 +28,9 @@ juce::String getDisplayString (RealtimeCheck rtc)
26
28
27
29
if (rtc == RealtimeCheck::relaxed)
30
return "Relaxed (check for real-time safety in all but the first process call)";
31
32
+ assert(false);
33
+ return {};
34
}
35
36
namespace
0 commit comments