@@ -1360,7 +1360,7 @@ auto basic_enum(
1360
1360
std::vector<value_member_info> enumerators {};
1361
1361
cpp2::i64 min_value {};
1362
1362
cpp2::i64 max_value {};
1363
- std::string underlying_type {} ;
1363
+ cpp2::deferred_init< std::string> underlying_type;
1364
1364
1365
1365
CPP2_UFCS (reserve_names)(t, " operator=" , " operator<=>" );
1366
1366
if (bitwise) {
@@ -1369,7 +1369,7 @@ auto basic_enum(
1369
1369
1370
1370
// 1. Gather: The names of all the user-written members, and find/compute the type
1371
1371
1372
- underlying_type = CPP2_UFCS (get_argument)(t, 0 );// use the first template argument, if there was one
1372
+ underlying_type. construct ( CPP2_UFCS (get_argument)(t, 0 ) );// use the first template argument, if there was one
1373
1373
1374
1374
auto found_non_numeric {false };
1375
1375
{
@@ -1415,23 +1415,23 @@ std::string value = "-1";
1415
1415
1416
1416
// Compute the default underlying type, if it wasn't explicitly specified
1417
1417
#line 913 "reflect.h2"
1418
- if (underlying_type == " " )
1418
+ if (underlying_type. value () == " " )
1419
1419
{
1420
1420
CPP2_UFCS (require)(t, !(std::move (found_non_numeric)),
1421
1421
" if you write an enumerator with a non-numeric-literal value, you must specify the enumeration's underlying type" );
1422
1422
1423
1423
if (!(bitwise)) {
1424
1424
if (cpp2::cmp_greater_eq (min_value,std::numeric_limits<cpp2::i8>::min ()) && cpp2::cmp_less_eq (max_value,std::numeric_limits<cpp2::i8>::max ())) {
1425
- underlying_type = " i8" ;
1425
+ underlying_type. value () = " i8" ;
1426
1426
}
1427
1427
else {if (cpp2::cmp_greater_eq (min_value,std::numeric_limits<cpp2::i16>::min ()) && cpp2::cmp_less_eq (max_value,std::numeric_limits<cpp2::i16>::max ())) {
1428
- underlying_type = " i16" ;
1428
+ underlying_type. value () = " i16" ;
1429
1429
}
1430
1430
else {if (cpp2::cmp_greater_eq (min_value,std::numeric_limits<cpp2::i32>::min ()) && cpp2::cmp_less_eq (max_value,std::numeric_limits<cpp2::i32>::max ())) {
1431
- underlying_type = " i32" ;
1431
+ underlying_type. value () = " i32" ;
1432
1432
}
1433
1433
else {if (cpp2::cmp_greater_eq (std::move (min_value),std::numeric_limits<cpp2::i64>::min ()) && cpp2::cmp_less_eq (std::move (max_value),std::numeric_limits<cpp2::i64>::max ())) {
1434
- underlying_type = " i64" ;
1434
+ underlying_type. value () = " i64" ;
1435
1435
}
1436
1436
else {
1437
1437
CPP2_UFCS (error)(t, " values are outside the range representable by the largest supported underlying signed type (i64)" );
@@ -1440,16 +1440,16 @@ std::string value = "-1";
1440
1440
else {
1441
1441
auto umax {std::move (max_value) * cpp2::as_<cpp2::u64, 2 >()};
1442
1442
if (cpp2::cmp_less_eq (umax,std::numeric_limits<cpp2::u8>::max ())) {
1443
- underlying_type = " u8" ;
1443
+ underlying_type. value () = " u8" ;
1444
1444
}
1445
1445
else {if (cpp2::cmp_less_eq (umax,std::numeric_limits<cpp2::u16>::max ())) {
1446
- underlying_type = " u16" ;
1446
+ underlying_type. value () = " u16" ;
1447
1447
}
1448
1448
else {if (cpp2::cmp_less_eq (std::move (umax),std::numeric_limits<cpp2::u32>::max ())) {
1449
- underlying_type = " u32" ;
1449
+ underlying_type. value () = " u32" ;
1450
1450
}
1451
1451
else {
1452
- underlying_type = " u64" ;
1452
+ underlying_type. value () = " u64" ;
1453
1453
}}}
1454
1454
}
1455
1455
}
@@ -1462,9 +1462,9 @@ std::string value = "-1";
1462
1462
CPP2_UFCS (remove_marked_members)(t);
1463
1463
1464
1464
// Generate all the common material: value and common functions
1465
- CPP2_UFCS (add_member)(t, " _value : " + cpp2::to_string (underlying_type) + " ;" );
1466
- CPP2_UFCS (add_member)(t, " private operator= : (implicit out this, _val: i64) == _value = cpp2::unsafe_narrow<" + cpp2::to_string (underlying_type) + " >(_val);" );
1467
- CPP2_UFCS (add_member)(t, " get_raw_value : (this) -> " + cpp2::to_string (std::move (underlying_type)) + " == _value;" );
1465
+ CPP2_UFCS (add_member)(t, " _value : " + cpp2::to_string (underlying_type. value () ) + " ;" );
1466
+ CPP2_UFCS (add_member)(t, " private operator= : (implicit out this, _val: i64) == _value = cpp2::unsafe_narrow<" + cpp2::to_string (underlying_type. value () ) + " >(_val);" );
1467
+ CPP2_UFCS (add_member)(t, " get_raw_value : (this) -> " + cpp2::to_string (std::move (underlying_type. value () )) + " == _value;" );
1468
1468
CPP2_UFCS (add_member)(t, " operator= : (out this, that) == { }" );
1469
1469
CPP2_UFCS (add_member)(t, " operator<=> : (this, that) -> std::strong_ordering;" );
1470
1470
0 commit comments