Commit d707adce authored by Victor Zverovich's avatar Victor Zverovich

Fix warning in clang

parent 0d732cf5
...@@ -246,6 +246,7 @@ class WidthHandler : public fmt::internal::ArgVisitor<WidthHandler, unsigned> { ...@@ -246,6 +246,7 @@ class WidthHandler : public fmt::internal::ArgVisitor<WidthHandler, unsigned> {
unsigned visit_unhandled_arg() { unsigned visit_unhandled_arg() {
FMT_THROW(fmt::FormatError("width is not integer")); FMT_THROW(fmt::FormatError("width is not integer"));
return 0;
} }
template <typename T> template <typename T>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment