Util: Change nullptr stringification

This commit is contained in:
Riyyi
2022-08-03 15:49:43 +02:00
parent 1b7a736be2
commit 5e419f501d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ TEST_CASE(FormatBasicTypes)
EXPECT_EQ(result, "");
result = Util::format("{}", nullptr);
EXPECT_EQ(result, "(nil)");
EXPECT_EQ(result, "nullptr");
int* number = new int(3);
result = Util::format("{}", number);