Commit 6178bc6f authored by Patrik Weiskircher's avatar Patrik Weiskircher

Fix switch fall-through warning

Clang with `-Wimplicit-fallthrough` enabled shows a warning here without
the break.
parent 209748f1
......@@ -676,6 +676,7 @@ FMT_FUNC Arg fmt::internal::FormatterBase::do_get_arg(
break;
case Arg::NAMED_ARG:
arg = *static_cast<const internal::Arg*>(arg.pointer);
break;
default:
/*nothing*/;
}
......
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