Changeset c54b0b4 for src/SynTree
- Timestamp:
- Mar 14, 2017, 11:09:16 AM (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:
- 64adb03
- Parents:
- 3ad7978
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/SynTree/Type.h ¶
r3ad7978 rc54b0b4 25 25 public: 26 26 struct Qualifiers { 27 Qualifiers(): isConst( false ), isVolatile( false ), isRestrict( false ), isLvalue( false ), isAtomic( false ) {}28 Qualifiers( bool isConst, bool isVolatile, bool isRestrict, bool isLvalue, bool isAtomic ): isConst( isConst ), isVolatile( isVolatile ), isRestrict( isRestrict ), isLvalue( isLvalue ), isAtomic( isAtomic) {}27 Qualifiers(): isConst( false ), isVolatile( false ), isRestrict( false ), isLvalue( false ), isAtomic( false ), isMutex( false ) {} 28 Qualifiers( bool isConst, bool isVolatile, bool isRestrict, bool isLvalue, bool isAtomic, bool isMutex ): isConst( isConst ), isVolatile( isVolatile ), isRestrict( isRestrict ), isLvalue( isLvalue ), isAtomic( isAtomic ), isMutex( isMutex ) {} 29 29 30 30 Qualifiers &operator&=( const Qualifiers &other ); … … 45 45 bool isLvalue; 46 46 bool isAtomic; 47 bool isMutex; 47 48 }; 48 49 … … 511 512 isLvalue &= other.isLvalue; 512 513 isAtomic &= other.isAtomic; 514 isMutex &= other.isMutex; 513 515 return *this; 514 516 } … … 520 522 isLvalue |= other.isLvalue; 521 523 isAtomic |= other.isAtomic; 524 isMutex |= other.isMutex; 522 525 return *this; 523 526 } … … 528 531 if ( other.isRestrict ) isRestrict = 0; 529 532 if ( other.isAtomic ) isAtomic = 0; 533 if ( other.isMutex ) isMutex = 0; 530 534 return *this; 531 535 }
Note: See TracChangeset
for help on using the changeset viewer.