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

Avoided a compiler error when using xcode with very old standard libraries

This commit is contained in:
jules 2017-09-06 14:12:41 +01:00
parent 3ba8c1f864
commit 64e76146d9

View file

@ -1412,6 +1412,7 @@ JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, const Str
JUCE_API OutputStream& JUCE_CALLTYPE operator<< (OutputStream& stream, StringRef stringToWrite);
#if JUCE_COMPILER_SUPPORTS_INITIALIZER_LISTS // just used to avoid compiling this under compilers that lack libc++
} // namespace juce
namespace std
@ -1423,3 +1424,4 @@ namespace std
}
namespace juce {
#endif