replace type juce::ScopedPointer
with std::unique_ptr
(@ 8cc06de)
#7
FulopNandor
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the previous commit titled
Eliminate the JUCE assertions in ''AboutBox''
(@ cd33b95), the variablesdexed
andsurge
were declared asjuce::ScopedPointer
in theAboutBox
class, in theGlobalEditor.cpp
file. Because this type is obsolete (see some discussions about it at JUCE Forum), it was replaced bystd:unique_ptr
- thanks to @baconpaul, who brought this to my attention.Furthermore, the initialization of the variables
dexed
andsurge
has been moved back to the initializer list of the constructor of theAboutBox
.Beta Was this translation helpful? Give feedback.
All reactions