fix: incorrect function argument

This commit is contained in:
ToruNiina
2024-06-28 00:48:06 +09:00
parent dc7e443be4
commit 83f37a18b1

View File

@@ -219,7 +219,7 @@ try_get(const basic_value<TC>& v) noexcept
const auto loc = v.location();
return err(make_error_info("toml::try_get(): bad_cast to "
"std::chrono::system_clock::time_point", loc,
"the actual type is " + to_string(v.type())), loc);
"the actual type is " + to_string(v.type())));
}
}
}