From fdee0ac3e31933f0298824a13c584afb02e993be Mon Sep 17 00:00:00 2001 From: WerWolv Date: Wed, 17 Dec 2025 16:56:55 +0100 Subject: [PATCH] fix: Test Provider still using old open function signature --- lib/libimhex/include/hex/test/test_provider.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libimhex/include/hex/test/test_provider.hpp b/lib/libimhex/include/hex/test/test_provider.hpp index 256ee556f..721323acf 100644 --- a/lib/libimhex/include/hex/test/test_provider.hpp +++ b/lib/libimhex/include/hex/test/test_provider.hpp @@ -49,7 +49,7 @@ namespace hex::test { [[nodiscard]] UnlocalizedString getTypeName() const override { return "hex.test.provider.test"; } - bool open() override { return true; } + OpenResult open() override { return {}; } void close() override { } nlohmann::json storeSettings(nlohmann::json) const override { return {}; }