diff options
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/CMakeLists.txt | 11 | ||||
| -rw-r--r-- | src/common/settings.cpp | 2 | ||||
| -rw-r--r-- | src/common/settings.h | 2 |
3 files changed, 12 insertions, 3 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 09e7e673e..cf05ae364 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -197,10 +197,15 @@ if (MSVC) | |||
| 197 | /we4254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data | 197 | /we4254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data |
| 198 | /we4800 # Implicit conversion from 'type' to bool. Possible information loss | 198 | /we4800 # Implicit conversion from 'type' to bool. Possible information loss |
| 199 | ) | 199 | ) |
| 200 | else() | 200 | endif() |
| 201 | |||
| 202 | if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") | ||
| 201 | target_compile_options(common PRIVATE | 203 | target_compile_options(common PRIVATE |
| 202 | $<$<CXX_COMPILER_ID:Clang>:-fsized-deallocation> | 204 | -fsized-deallocation |
| 203 | $<$<CXX_COMPILER_ID:Clang>:-Werror=unreachable-code-aggressive> | 205 | -Werror=unreachable-code-aggressive |
| 206 | ) | ||
| 207 | target_compile_definitions(common PRIVATE | ||
| 208 | $<$<VERSION_LESS:$<CXX_COMPILER_VERSION>,15>:_CANNOT_EXPLICITLY_INSTANTIATE> | ||
| 204 | ) | 209 | ) |
| 205 | endif() | 210 | endif() |
| 206 | 211 | ||
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index a1cc76a38..f4eb2d2fb 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | 25 | ||
| 26 | namespace Settings { | 26 | namespace Settings { |
| 27 | 27 | ||
| 28 | #ifndef _CANNOT_EXPLICITLY_INSTANTIATE | ||
| 28 | #define SETTING(TYPE, RANGED) template class Setting<TYPE, RANGED> | 29 | #define SETTING(TYPE, RANGED) template class Setting<TYPE, RANGED> |
| 29 | #define SWITCHABLE(TYPE, RANGED) template class SwitchableSetting<TYPE, RANGED> | 30 | #define SWITCHABLE(TYPE, RANGED) template class SwitchableSetting<TYPE, RANGED> |
| 30 | 31 | ||
| @@ -61,6 +62,7 @@ SWITCHABLE(u8, true); | |||
| 61 | 62 | ||
| 62 | #undef SETTING | 63 | #undef SETTING |
| 63 | #undef SWITCHABLE | 64 | #undef SWITCHABLE |
| 65 | #endif | ||
| 64 | 66 | ||
| 65 | Values values; | 67 | Values values; |
| 66 | 68 | ||
diff --git a/src/common/settings.h b/src/common/settings.h index e510036b4..35fa4cf3d 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -45,6 +45,7 @@ struct ResolutionScalingInfo { | |||
| 45 | } | 45 | } |
| 46 | }; | 46 | }; |
| 47 | 47 | ||
| 48 | #ifndef _CANNOT_EXPLICITLY_INSTANTIATE | ||
| 48 | // Instantiate the classes elsewhere (settings.cpp) to reduce compiler/linker work | 49 | // Instantiate the classes elsewhere (settings.cpp) to reduce compiler/linker work |
| 49 | #define SETTING(TYPE, RANGED) extern template class Setting<TYPE, RANGED> | 50 | #define SETTING(TYPE, RANGED) extern template class Setting<TYPE, RANGED> |
| 50 | #define SWITCHABLE(TYPE, RANGED) extern template class SwitchableSetting<TYPE, RANGED> | 51 | #define SWITCHABLE(TYPE, RANGED) extern template class SwitchableSetting<TYPE, RANGED> |
| @@ -84,6 +85,7 @@ SWITCHABLE(u8, true); | |||
| 84 | 85 | ||
| 85 | #undef SETTING | 86 | #undef SETTING |
| 86 | #undef SWITCHABLE | 87 | #undef SWITCHABLE |
| 88 | #endif | ||
| 87 | 89 | ||
| 88 | /** | 90 | /** |
| 89 | * The InputSetting class allows for getting a reference to either the global or custom members. | 91 | * The InputSetting class allows for getting a reference to either the global or custom members. |