cppcheck compilation fails with g++4.6.3. Patch from mavik1

This commit is contained in:
Alexander Mai 2014-11-01 20:21:15 +01:00
parent 4eb33e7479
commit fe468ac142
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
/* Emulate certain features of C++11 in a C++98-compatible way. */
#ifdef __cplusplus
#if __cplusplus < 201103L
#if !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L
// Null pointer literal
// Source: SC22/WG21/N2431 = J16/07-0301