diff --git a/modules/juce_dsp/containers/juce_AudioBlock.h b/modules/juce_dsp/containers/juce_AudioBlock.h index b3a005fd5b..7fa027e509 100644 --- a/modules/juce_dsp/containers/juce_AudioBlock.h +++ b/modules/juce_dsp/containers/juce_AudioBlock.h @@ -37,6 +37,12 @@ namespace SampleTypeHelpers // Internal classes needed for handling sample type using Type = T; }; + template + struct ElementType + { + using Type = const typename T::value_type; + }; + template struct ElementType {