Changeset dc74231 for src/AST/Bitfield.hpp
- Timestamp:
- May 24, 2024, 2:22:10 PM (4 months ago)
- Branches:
- master
- Children:
- bfcd3af
- Parents:
- cad8c88 (diff), 2c8946b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Bitfield.hpp
rcad8c88 rdc74231 60 60 61 61 template<typename T> 62 inline bool operator== 62 inline bool operator==( const bitfield<T> & a, const bitfield<T> & b ) { 63 63 return a.val == b.val; 64 64 } 65 65 66 66 template<typename T> 67 inline bool operator!= 67 inline bool operator!=( const bitfield<T> & a, const bitfield<T> & b ) { 68 68 return !(a == b); 69 69 }
Note: See TracChangeset
for help on using the changeset viewer.