mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-30 02:37:36 +02:00
Merge pull request #277 from PSPDFKit-labs/fix-switch-fallthrough
Fix switch fall-through warning
This commit is contained in:
@ -676,6 +676,7 @@ FMT_FUNC Arg fmt::internal::FormatterBase::do_get_arg(
|
|||||||
break;
|
break;
|
||||||
case Arg::NAMED_ARG:
|
case Arg::NAMED_ARG:
|
||||||
arg = *static_cast<const internal::Arg*>(arg.pointer);
|
arg = *static_cast<const internal::Arg*>(arg.pointer);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
/*nothing*/;
|
/*nothing*/;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user