Changeset 4ac402d for src/ResolvExpr
- Timestamp:
- Oct 31, 2023, 10:39:33 AM (15 months ago)
- Branches:
- master
- Children:
- 58c64323
- Parents:
- 7d55e4d
- Location:
- src/ResolvExpr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CommonType.cc
r7d55e4d r4ac402d 485 485 // GENERATED END 486 486 static_assert( 487 sizeof(commonTypes)/sizeof(commonTypes[0][0]) == BasicType::NUMBER_OF_BASIC_TYPES *BasicType::NUMBER_OF_BASIC_TYPES,487 sizeof(commonTypes)/sizeof(commonTypes[0][0]) == ast::BasicType::NUMBER_OF_BASIC_TYPES * ast::BasicType::NUMBER_OF_BASIC_TYPES, 488 488 "Each basic type kind should have a corresponding row in the combined type matrix" 489 489 ); -
src/ResolvExpr/ConversionCost.cc
r7d55e4d r4ac402d 268 268 // GENERATED END 269 269 static_assert( 270 sizeof(costMatrix)/sizeof(costMatrix[0][0]) == BasicType::NUMBER_OF_BASIC_TYPES *BasicType::NUMBER_OF_BASIC_TYPES,270 sizeof(costMatrix)/sizeof(costMatrix[0][0]) == ast::BasicType::NUMBER_OF_BASIC_TYPES * ast::BasicType::NUMBER_OF_BASIC_TYPES, 271 271 "Missing row in the cost matrix" 272 272 ); … … 315 315 // GENERATED END 316 316 static_assert( 317 sizeof(signMatrix)/sizeof(signMatrix[0][0]) == BasicType::NUMBER_OF_BASIC_TYPES *BasicType::NUMBER_OF_BASIC_TYPES,317 sizeof(signMatrix)/sizeof(signMatrix[0][0]) == ast::BasicType::NUMBER_OF_BASIC_TYPES * ast::BasicType::NUMBER_OF_BASIC_TYPES, 318 318 "Missing row in the sign matrix" 319 319 );
Note: See TracChangeset
for help on using the changeset viewer.