Ignore:
Timestamp:
May 23, 2024, 5:18:27 PM (3 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
dc74231
Parents:
fbc84ca
Message:

Various whitespace and intentation updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Bitfield.hpp

    rfbc84ca r2c8946b  
    6060
    6161template<typename T>
    62 inline bool operator== ( const bitfield<T> & a, const bitfield<T> & b ) {
     62inline bool operator==( const bitfield<T> & a, const bitfield<T> & b ) {
    6363        return a.val == b.val;
    6464}
    6565
    6666template<typename T>
    67 inline bool operator!= ( const bitfield<T> & a, const bitfield<T> & b ) {
     67inline bool operator!=( const bitfield<T> & a, const bitfield<T> & b ) {
    6868        return !(a == b);
    6969}
Note: See TracChangeset for help on using the changeset viewer.