This commit is contained in:
MihailRis
2024-05-09 17:09:45 +03:00
parent 033f12d8e9
commit 44d0a462f6
+1 -1
View File
@@ -59,7 +59,7 @@ public:
} else if (str == "false") { } else if (str == "false") {
return false; return false;
} else if (str == "none" || str == "nil" || str == "null") { } else if (str == "none" || str == "nil" || str == "null") {
return std::monostate(); return dynamic::NONE;
} }
return str; return str;
} }