Changeset 8f557161 for src/ResolvExpr/Resolver.cc
- Timestamp:
- Jun 13, 2023, 4:33:16 PM (21 months ago)
- Branches:
- master
- Children:
- 5668740, fec8bd1
- Parents:
- 576aadb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Resolver.cc
r576aadb r8f557161 1341 1341 auto mutAttr = mutate(attr); 1342 1342 mutAttr->params.front() = resolved; 1343 if (! result. second) {1343 if (! result.hasKnownValue) { 1344 1344 SemanticWarning(loc, Warning::GccAttributes, 1345 1345 toCString( name, " priorities must be integers from 0 to 65535 inclusive: ", arg ) ); 1346 1346 } 1347 1347 else { 1348 auto priority = result. first;1348 auto priority = result.knownValue; 1349 1349 if (priority < 101) { 1350 1350 SemanticWarning(loc, Warning::GccAttributes,
Note: See TracChangeset
for help on using the changeset viewer.