From 101825df59c8ba76fb1bd559bf768fa58628f16b Mon Sep 17 00:00:00 2001 From: xenakios Date: Fri, 23 Feb 2018 21:12:16 +0200 Subject: [PATCH] Fix for clang --- Source/PS_Source/globals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/PS_Source/globals.h b/Source/PS_Source/globals.h index fe89fc7..40461cc 100644 --- a/Source/PS_Source/globals.h +++ b/Source/PS_Source/globals.h @@ -142,7 +142,7 @@ inline void getFromTreeProperties(ValueTree src, juce::Identifier varname, Range template inline void getFromTreeProperties(ValueTree src, T par) { - static_assert(std::is_base_of::type>::value, + static_assert(std::is_base_of::type>::value, "T must inherit from AudioProcessorParameterWithID"); if (par!=nullptr && src.hasProperty(par->paramID)) {