diff options
| author | 2023-06-10 00:44:03 -0400 | |
|---|---|---|
| committer | 2023-07-21 10:56:54 -0400 | |
| commit | 0193add060ecc591ca27d029916823911df5d503 (patch) | |
| tree | df156f3ff0ad714507964a98724674bf2fd3c7cb /src/common/settings.h | |
| parent | settings_enums: Add const type where needed (diff) | |
| download | yuzu-0193add060ecc591ca27d029916823911df5d503.tar.gz yuzu-0193add060ecc591ca27d029916823911df5d503.tar.xz yuzu-0193add060ecc591ca27d029916823911df5d503.zip | |
general: Add typeinfo where needed
Using typeid without including typeinfo first produces an ill-formed program.
Diffstat (limited to 'src/common/settings.h')
| -rw-r--r-- | src/common/settings.h | 1 |
1 files changed, 1 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 @@ | |||
| 12 | #include <stdexcept> | 12 | #include <stdexcept> |
| 13 | #include <string> | 13 | #include <string> |
| 14 | #include <typeindex> | 14 | #include <typeindex> |
| 15 | #include <typeinfo> | ||
| 15 | #include <utility> | 16 | #include <utility> |
| 16 | #include <vector> | 17 | #include <vector> |
| 17 | 18 | ||