Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions include/boost/int128/fmt_format.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ constexpr auto parse_impl(ParseContext& ctx)
case '^':
align = alignment::center;
break;
default:
break;
default: // LCOV_EXCL_LINE
BOOST_INT128_UNREACHABLE; // LCOV_EXCL_LINE
}
++it;
}
Expand All @@ -104,8 +104,8 @@ constexpr auto parse_impl(ParseContext& ctx)
case '^':
align = alignment::center;
break;
default:
break;
default: // LCOV_EXCL_LINE
BOOST_INT128_UNREACHABLE; // LCOV_EXCL_LINE
}
++it;
}
Expand Down
8 changes: 4 additions & 4 deletions include/boost/int128/format.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ constexpr auto parse_impl(ParseContext& ctx)
case '^':
align = alignment::center;
break;
default:
break;
default: // LCOV_EXCL_LINE
BOOST_INT128_UNREACHABLE; // LCOV_EXCL_LINE
}
++it;
}
Expand All @@ -87,8 +87,8 @@ constexpr auto parse_impl(ParseContext& ctx)
case '^':
align = alignment::center;
break;
default:
break;
default: // LCOV_EXCL_LINE
BOOST_INT128_UNREACHABLE; // LCOV_EXCL_LINE
}
++it;
}
Expand Down
Loading