Hi, I am unable to create a knob because ScopedPointer isn’t recognized within the juce library. Does anyone know how to fix this? Is it a path issue?
You need to use juce:: namespace in front of all juce types. Also, don’t use ScopedPointer it is deprecated, use std::unique_ptr.
2 Likes

