mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-18 22:11:40 +00:00
QA: nullptr_t -> std::nullptr_t
This fixes a build failure on some systems.
This commit is contained in:
parent
ad76ebd82a
commit
49d75e2383
@ -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
Block a user