diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:14:37 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:14:37 +0200 |
commit | 8bf668665b107469086f16cb8ad23e47d479d2b4 (patch) | |
tree | 66a91ef06a8caa7cd6819dcbe1860693d3eda8d5 /shared/parse_plural.h | |
parent | 3.21 (diff) | |
download | FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.gz FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.tar.bz2 FreeFileSync-8bf668665b107469086f16cb8ad23e47d479d2b4.zip |
4.0
Diffstat (limited to 'shared/parse_plural.h')
-rw-r--r-- | shared/parse_plural.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/parse_plural.h b/shared/parse_plural.h index 1139ffb6..1d2bcd95 100644 --- a/shared/parse_plural.h +++ b/shared/parse_plural.h @@ -240,7 +240,7 @@ private: const Expression& e = parse(); expr = &dynamic_cast<const Expr<int>&>(e); } - catch(std::bad_cast&) { throw ParsingError(); } + catch (std::bad_cast&) { throw ParsingError(); } consumeToken(Token::TK_END); } @@ -327,7 +327,7 @@ private: Token::Type t = token().type; if (t == Token::TK_LESS || //associativity: n/a - t == Token::TK_LESS_EQUAL|| + t == Token::TK_LESS_EQUAL || t == Token::TK_GREATER || t == Token::TK_GREATER_EQUAL) { |