Update type.cpp

Fixes the other error noted in #7813
This commit is contained in:
Celtic Minstrel 2023-07-24 13:47:11 -04:00 committed by GitHub
parent f99c0b50ba
commit b5ea773827
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@
#include "config.hpp"
#include <optional>
#include <variant>
#include "utils/variant.hpp"
struct is_translatable
{
@ -36,7 +36,7 @@ struct is_translatable
{
return true;
}
bool operator()(const std::monostate&) const
bool operator()(const utils::monostate&) const
{
return true;
}