Skip to content

Commit

Permalink
Mingw fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
gulrak committed Apr 13, 2024
1 parent aa963bf commit 178362c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emulation/properties.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Property
int minValue{};
int maxValue{};
};
using Value = std::variant<nullptr_t,bool,Integer,std::string,Combo>;
using Value = std::variant<std::nullptr_t,bool,Integer,std::string,Combo>;

Property(std::string name, Value val, std::string additionalInfo, bool isReadOnly = true);
Property(std::string name, Value val, bool isReadOnly = true);
Expand Down

0 comments on commit 178362c

Please sign in to comment.