Changes in src/SynTree/Type.h [3315e3d:85dac33]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Type.h
r3315e3d r85dac33 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Andrew Beach12 // Last Modified On : Wed Sep 4 09:58:00201913 // Update Count : 1 7011 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 14 17:11:24 2019 13 // Update Count : 169 14 14 // 15 15 … … 131 131 bool operator>( Qualifiers other ) const { return *this != other && *this >= other; } 132 132 BFCommon( Qualifiers, NumTypeQualifier ) 133 134 Qualifiers unify( Qualifiers const & other ) const {135 int or_flags = Mask & (val | other.val);136 int and_flags = val & other.val;137 return Qualifiers( or_flags | and_flags );138 }139 133 }; // Qualifiers 140 134
Note: See TracChangeset
for help on using the changeset viewer.