Windows|Cygwin: Fixing incorrectly initialized objects
Apparently in the Cygwin GCC build, static global C++ objects are notinitialized properly (just zeroed, constructor not called). So theseobjects need to be initialized manually.
This means not using Strings as static globals.
View differences
Windows|Cygwin: Fixing incorrectly initialized objects
Apparently in the Cygwin GCC build, static global C++ objects are not
initialized properly (just zeroed, constructor not called). So these
objects need to be initialized manually.
This means not using Strings as static globals.