Cosmetics: reducing the compilation warnings

This commit is contained in:
Felipe Zimmerle
2016-07-29 18:33:16 -03:00
parent 0e5f72977e
commit 062dd17f14
4 changed files with 10 additions and 11 deletions

View File

@@ -68,11 +68,13 @@ bool RulesExceptions::load(const std::string &a, std::string *error) {
bool RulesExceptions::addNumber(int a) {
m_numbers.push_back(a);
return true;
}
bool RulesExceptions::addRange(int a, int b) {
m_ranges.push_back(std::make_pair(a, b));
return true;
}