Changeset ef42b143 for src/SynTree/Type.h
- Timestamp:
- Mar 16, 2017, 5:20:16 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 3743983
- Parents:
- 1fbab5a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Type.h
r1fbab5a ref42b143 92 92 bool operator<=( Qualifiers other ) const { 93 93 return isConst <= other.isConst && isVolatile <= other.isVolatile && 94 isMutex == other.isMutex && isAtomic == other.isAtomic;94 isMutex >= other.isMutex && isAtomic == other.isAtomic; 95 95 } 96 96 bool operator>=( Qualifiers other ) const { 97 97 return isConst >= other.isConst && isVolatile >= other.isVolatile && 98 isMutex == other.isMutex && isAtomic == other.isAtomic;98 isMutex <= other.isMutex && isAtomic == other.isAtomic; 99 99 } 100 100 bool operator<( Qualifiers other ) const {
Note: See TracChangeset
for help on using the changeset viewer.