From feba29dc29b52d32703f94cf04d95ed5e0e57369 Mon Sep 17 00:00:00 2001 From: Steffen Schuemann Date: Sat, 13 Apr 2024 13:59:47 +0200 Subject: [PATCH] Mingw fix. --- src/emulation/properties.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/emulation/properties.hpp b/src/emulation/properties.hpp index 82d2fca..6be8a7d 100644 --- a/src/emulation/properties.hpp +++ b/src/emulation/properties.hpp @@ -26,6 +26,7 @@ #pragma once #include +#include #include #include #include @@ -75,7 +76,7 @@ class Property int minValue{}; int maxValue{}; }; - using Value = std::variant; + using Value = std::variant; Property(std::string name, Value val, std::string additionalInfo, bool isReadOnly = true); Property(std::string name, Value val, bool isReadOnly = true);