Fix switch fall-through warning

Clang with `-Wimplicit-fallthrough` enabled shows a warning here without
the break.
This commit is contained in:
Patrik Weiskircher 2016-02-23 12:59:26 -05:00
parent 209748f128
commit 6178bc6f8e

View File

@ -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*/;
}