summaryrefslogtreecommitdiff
path: root/FreeFileSync/Source/parse_plural.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeFileSync/Source/parse_plural.h')
-rw-r--r--FreeFileSync/Source/parse_plural.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/FreeFileSync/Source/parse_plural.h b/FreeFileSync/Source/parse_plural.h
index 5f19c6b2..f5883135 100644
--- a/FreeFileSync/Source/parse_plural.h
+++ b/FreeFileSync/Source/parse_plural.h
@@ -27,7 +27,7 @@ class ParsingError {};
class PluralForm
{
public:
- PluralForm(const std::string& stream); //throw ParsingError
+ explicit PluralForm(const std::string& stream); //throw ParsingError
size_t getForm(int64_t n) const { n_ = std::abs(n) ; return static_cast<size_t>(expr_->eval()); }
private:
bgstack15