2
0
mirror of https://github.com/boostorg/parser.git synced 2026-01-19 04:22:13 +00:00

Add missing 'else' between two if constexpr cases.

This commit is contained in:
Zach Laine
2025-11-15 15:57:03 -06:00
parent 647cec6683
commit 6826f957a1

View File

@@ -4562,7 +4562,7 @@ namespace boost { namespace parser {
using just_out = detail::remove_cv_ref_t<decltype(out)>;
if constexpr (detail::is_nope_v<attr_t>) {
// nothing to do
} if constexpr (
} else if constexpr (
(!out_container ||
!std::is_same_v<just_x, just_out>) &&
std::is_assignable_v<just_out &, just_x &&> &&