I have the following test :
BOOST_CHECK_NE(pointer, nullptr);
The compilation fails due to
/xxx/include/boost/test/tools/detail/print_helper.hpp:50:14: error: ambiguous overload for ‘operator<<’ (operand types are ‘std::ostream {aka std::basic_ostream}’ and ‘std::nullptr_t’)
What is wrong and how should I test for null pointers ?