Commit dcb6f5ca authored by Dominik Charousset's avatar Dominik Charousset

Print "null" instead of "<null>" for nullptr

parent cfc6388f
......@@ -328,7 +328,7 @@ public:
}
inline void log(level lvl, const std::nullptr_t&) {
log(lvl, "<null>");
log(lvl, "null");
}
/// Output stream for logging purposes.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment