Changeset 2c8946b for src/AST/Bitfield.hpp
- Timestamp:
- May 23, 2024, 5:18:27 PM (4 months ago)
- Branches:
- master
- Children:
- dc74231
- Parents:
- fbc84ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Bitfield.hpp
rfbc84ca r2c8946b 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.