Changeset f6835e5
- Timestamp:
- Oct 28, 2015, 3:40:28 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 698664b3
- Parents:
- adcdd2f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Type.h
radcdd2f rf6835e5 418 418 return isConst == other.isConst 419 419 && isVolatile == other.isVolatile 420 && isRestrict == other.isRestrict421 // && isLvalue == other.isLvalue420 // && isRestrict == other.isRestrict 421 // && isLvalue == other.isLvalue 422 422 && isAtomic == other.isAtomic; 423 423 } … … 426 426 return isConst != other.isConst 427 427 || isVolatile != other.isVolatile 428 || isRestrict != other.isRestrict429 // || isLvalue != other.isLvalue428 // || isRestrict != other.isRestrict 429 // || isLvalue != other.isLvalue 430 430 || isAtomic != other.isAtomic; 431 431 } … … 434 434 return isConst <= other.isConst 435 435 && isVolatile <= other.isVolatile 436 && isRestrict <= other.isRestrict437 // && isLvalue >= other.isLvalue436 // && isRestrict <= other.isRestrict 437 // && isLvalue >= other.isLvalue 438 438 && isAtomic == other.isAtomic; 439 439 } … … 442 442 return isConst >= other.isConst 443 443 && isVolatile >= other.isVolatile 444 && isRestrict >= other.isRestrict445 // && isLvalue <= other.isLvalue444 // && isRestrict >= other.isRestrict 445 // && isLvalue <= other.isLvalue 446 446 && isAtomic == other.isAtomic; 447 447 }
Note: See TracChangeset
for help on using the changeset viewer.