diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-06-10 06:44:03 +0200 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 16:56:54 +0200 |
commit | 0193add060ecc591ca27d029916823911df5d503 (patch) | |
tree | df156f3ff0ad714507964a98724674bf2fd3c7cb /src/common | |
parent | settings_enums: Add const type where needed (diff) | |
download | yuzu-0193add060ecc591ca27d029916823911df5d503.tar yuzu-0193add060ecc591ca27d029916823911df5d503.tar.gz yuzu-0193add060ecc591ca27d029916823911df5d503.tar.bz2 yuzu-0193add060ecc591ca27d029916823911df5d503.tar.lz yuzu-0193add060ecc591ca27d029916823911df5d503.tar.xz yuzu-0193add060ecc591ca27d029916823911df5d503.tar.zst yuzu-0193add060ecc591ca27d029916823911df5d503.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/settings.h | 1 | ||||
-rw-r--r-- | src/common/settings_enums.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 384a8ecb6..29dad27fc 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -12,6 +12,7 @@ #include <stdexcept> #include <string> #include <typeindex> +#include <typeinfo> #include <utility> #include <vector> diff --git a/src/common/settings_enums.h b/src/common/settings_enums.h index 2710f136d..f3d76b927 100644 --- a/src/common/settings_enums.h +++ b/src/common/settings_enums.h @@ -7,6 +7,7 @@ #include <string> #include <type_traits> #include <typeindex> +#include <typeinfo> #include "common/common_types.h" namespace Settings { |