Fix warning in clang

This commit is contained in:
Victor Zverovich 2014-10-13 06:59:18 -07:00
parent 0d732cf5d3
commit d707adce5c

View File

@ -246,6 +246,7 @@ class WidthHandler : public fmt::internal::ArgVisitor<WidthHandler, unsigned> {
unsigned visit_unhandled_arg() {
FMT_THROW(fmt::FormatError("width is not integer"));
return 0;
}
template <typename T>