sys: Fixed more build issues

This commit is contained in:
WerWolv
2023-03-13 09:25:07 +01:00
parent 55f9faea10
commit 00a5fd2d7c
5 changed files with 16 additions and 23 deletions

View File

@@ -1,6 +1,5 @@
#include <hex/providers/provider.hpp>
#include <hex/helpers/file.hpp>
#include <hex/helpers/logger.hpp>
#include <stdexcept>
@@ -48,7 +47,7 @@ namespace hex::test {
return this->m_data->size();
}
[[nodiscard]] virtual std::string getTypeName() const { return "hex.test.provider.test"; }
[[nodiscard]] virtual std::string getTypeName() const override { return "hex.test.provider.test"; }
bool open() override { return true; }
void close() override { }