Added some warnings from clang's -Weverything

This commit is contained in:
Alexey Milovidov 2019-01-04 17:10:36 +03:00
parent bb89be0429
commit 445fc2bb43

View File

@ -56,7 +56,7 @@ std::string getOrdinalSuffix(T n)
case 2: return "nd";
case 3: return "rd";
default: return "th";
};
}
}
/// More efficient than libc, because doesn't respect locale. But for some functions table implementation could be better.