This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Projucer: Fixed an edge case where preprocessor macros would not be correctly parsed if they had the form "MYMACRO="
tags/2021-05-28
hogliux
8 years ago
parent
7129625c86
commit
a1fcd357ae
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
extras/Projucer/Source/Utility/jucer_MiscUtilities.cpp
+ 2
- 1
extras/Projucer/Source/Utility/jucer_MiscUtilities.cpp
View File
@@ -97,7 +97,8 @@ StringPairArray parsePreprocessorDefs (const String& text)
{
++s;
s = s.findEndOfWhitespace();
while ((! s.isEmpty()) && *s == ' ')
++s;
while ((! s.isEmpty()) && ! s.isWhitespace())
{
Write
Preview
Loading…
Cancel
Save