Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 13, 2009, 11:29:15 PM (15 years ago)
Author:
rgrieder
Message:

Workaround for GCC < 4.2.0 to avoid a bug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/core/CorePrecompiledHeaders.h

    r3160 r3161  
    5858#include <tinyxml/ticpp.h>
    5959
    60 #include "util/Convert.h"
     60// GCC may have problems with anonymous namespaces in certain situations
     61#if !(defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ < 420))
     62#  include "util/Convert.h"
     63#endif
    6164#include "util/Debug.h"
    6265#include "util/Exception.h"
Note: See TracChangeset for help on using the changeset viewer.