QA: nullptr_t -> std::nullptr_t
This fixes a build failure on some systems.
(cherry picked from commit 49d75e2383
)
This commit is contained in:
parent
2793578dcb
commit
0655280f2c
|
@ -118,9 +118,9 @@
|
|||
BOOST_TEST_PRINT_NAMESPACE_OPEN
|
||||
{
|
||||
template <>
|
||||
struct print_log_value<nullptr_t>
|
||||
struct print_log_value<std::nullptr_t>
|
||||
{
|
||||
inline void operator()( std::ostream& os, nullptr_t const& p )
|
||||
inline void operator()( std::ostream& os, std::nullptr_t const& p )
|
||||
{
|
||||
os << "nullptr";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue