Fix compilation with GCC 4.4.

It was broken by fe468ac142.
This commit is contained in:
Lauri Nurmi 2014-12-21 02:15:53 +02:00
parent a95e5bff2b
commit d543a85510
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 !defined(__GXX_EXPERIMENTAL_CXX0X__) && __cplusplus < 201103L
#if (__GNUC__ <= 4 && __GNUC_MINOR__ < 6) || __cplusplus < 201103L
// Null pointer literal
// Source: SC22/WG21/N2431 = J16/07-0301