diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-06-18 03:52:41 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 10:56:55 -0400 |
commit | ee32b177823b9b8499c9fd188a571884f00cf655 (patch) | |
tree | 32cf65e205a685672a109c4d4bd7edfd75353a34 /src/common/settings_common.h | |
parent | 916c6cd1a0baab21cf2c029179290d73fd8dab89 (diff) |
common,yuzu-qt: GCC warning silences
Fixes -Wshadow, -Wdeprecated, and catch by copy rather than by ref.
Diffstat (limited to 'src/common/settings_common.h')
-rw-r--r-- | src/common/settings_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings_common.h b/src/common/settings_common.h index 4d6d3021e1..2b5c72f412 100644 --- a/src/common/settings_common.h +++ b/src/common/settings_common.h @@ -178,7 +178,7 @@ public: * * @returns The setting's category */ - [[nodiscard]] Category Category() const; + [[nodiscard]] enum Category Category() const; /** * Returns the label this setting was created with. |