]> git.mxchange.org Git - simgear.git/commitdiff
remove a workaround for the C++ / stdlibary bug which existed aeons ago on Mac.
authorehofman <ehofman>
Fri, 25 Jul 2008 08:34:15 +0000 (08:34 +0000)
committerehofman <ehofman>
Fri, 25 Jul 2008 08:34:15 +0000 (08:34 +0000)
simgear/debug/logstream.cxx

index 28afbd26c313b601e6e25282fe3478df10453c9c..8f6104a8d2780157b893948f69e4c8d1958c44be 100644 (file)
@@ -97,17 +97,5 @@ logstream::initGlobalLogstream()
 {
     // Force initialization of cerr.
     static std::ios_base::Init initializer;
-    // XXX Is the following still necessary?
-#ifdef __APPLE__
-    /**
-     * There appears to be a bug in the C++ runtime in Mac OS X that
-     * will crash if certain funtions are called (in this case
-     * cerr.rdbuf()) during static initialization of a class. This
-     * print statement is hack to kick the library in the pants so it
-     * won't crash when cerr.rdbuf() is first called -DW 
-     **/
-    std::cout << "Using Mac OS X hack for initializing C++ stdio..."
-              << std::endl;
-#endif
     global_logstream = new logstream(std::cerr);
 }