1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00

Projucer: Make it simpler to uncomment config flags with no specified value in JUCE's AppConfig.h by including the "1" in the define

This commit is contained in:
hogliux 2017-06-01 12:54:49 +01:00
parent d6d5a18818
commit 95aa44bbfc

View file

@ -454,7 +454,7 @@ private:
else if (value == Project::configFlagDisabled)
out << " #define " << f->symbol << " 0";
else if (f->defaultValue.isEmpty())
out << " //#define " << f->symbol;
out << " //#define " << f->symbol << " 1";
else
out << " #define " << f->symbol << " " << f->defaultValue;