Merge topic 'WCDH-fix-cxx_nullptr-workaround'

f9d09626 WCDH: Fix cxx_nullptr workaround for pre-C++11 compilers
This commit is contained in:
Brad King 2015-03-20 09:47:37 -04:00 committed by CMake Topic Stage
commit 543b20f269
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,7 @@ function(write_compiler_detection_header
# if ${def_name}
# define ${def_value} nullptr
# else
# define ${def_value} static_cast<void*>(0)
# define ${def_value} 0
# endif
\n")
endif()