OK, then we probably should sure that
MOZ_HAVE_CXX11_NULLPTR is defined:
Either by locking what leads to the fact it is not and adjusting it
...or by simply defining it. :-)
Thats the relvant part:
#elif defined(__GNUC__)
# if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L
# if MOZ_GCC_VERSION_AT_LEAST(4, 6, 0)
# define MOZ_HAVE_CXX11_NULLPTR
# endif
# endif
#elif defined(_MSC_VER) && _MSC_VER >= 1600
...one condition is false. The question is: Which one?