diff options
author | Peter Powell <petpow@saberuk.com> | 2018-10-26 01:18:54 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-10-26 01:20:35 +0100 |
commit | 2d50984185c7902d37783a98f19637c86694a452 (patch) | |
tree | 58b599ebbc761d3011e266aeaaa1a0f5612fe449 /src/command_parse.cpp | |
parent | 2b4682c2d1458377faa97ded0345d740ece31c66 (diff) |
Fix a bunch of harmless compiler warnings on recent GCC releases.
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r-- | src/command_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index d4dd7da21..c2ae39d49 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -452,7 +452,7 @@ void CommandParser::TranslateSingleParam(TranslateType to, const std::string& it } // If no custom translator was given, fall through } - case TR_TEXT: + /*@fallthrough@*/ default: /* Do nothing */ dest.append(item); |