Merge pull request #277 from PSPDFKit-labs/fix-switch-fallthrough

Fix switch fall-through warning
This commit is contained in:
Victor Zverovich 2016-02-23 10:28:17 -08:00
commit 2f12a32c20

View File

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