VS 2015 gives a compiler error C2239 in juce_String.h when JUCE_DLL_BUILD=1 and hence JUCE_API=__declspec(dllexport)
The error message complains that a __declspec(dllexport) function can’t be deleted. This occurs with the << operator (String& bool).
As a temporary workaround, I just commented this line out, but obviously a better solution is needed.
