Fix MetadataDecode name and fix compiler error with ci

This commit is contained in:
2026-01-23 05:11:48 -06:00
parent ba7213e184
commit b3c92707b9
5 changed files with 5 additions and 5 deletions

View File

@@ -145,7 +145,7 @@ namespace Tesses::CrossLang
bytes.push_back(std::get<bool>(n) ? 1 : 0);
return;
}
if(std::holds_alternative<nullptr_t>(n))
if(std::holds_alternative<std::nullptr_t>(n))
{
bytes.push_back(2);
return;