sys: Upgrade codebase to C++23

This commit is contained in:
WerWolv
2022-07-15 11:37:10 +02:00
parent ed67c20cba
commit 626c34dce8
4 changed files with 9 additions and 9 deletions

View File

@@ -91,7 +91,7 @@ namespace hex::plugin::builtin {
}
void load(nlohmann::json &j) override {
this->m_value = j["data"];
this->m_value = j["data"].get<std::string>();
}
private:
@@ -213,7 +213,7 @@ namespace hex::plugin::builtin {
}
void load(nlohmann::json &j) override {
this->m_comment = j["comment"];
this->m_comment = j["comment"].get<std::string>();
}
private: