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 178362c commit feba29d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/emulation/properties.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#pragma once

#include <algorithm>
#include <cstddef>
#include <map>
#include <unordered_map>
#include <string>
Expand Down Expand Up @@ -75,7 +76,7 @@ class Property
int minValue{};
int maxValue{};
};
using Value = std::variant<std::nullptr_t,bool,Integer,std::string,Combo>;
using Value = std::variant<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 feba29d

Please sign in to comment.