Ignore:
Timestamp:
Feb 12, 2025, 11:33:33 AM (12 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
5e8d75bb
Parents:
54cd1a51
Message:

Just some formatting clean-up I did while investigating EnumDecl::inlinedDecl.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/Cost.hpp

    r54cd1a51 ra8404d9  
    169169}
    170170
     171inline bool operator<=( const Cost lhs, const Cost rhs ) {
     172        return !(rhs < lhs);
     173}
     174
    171175inline Cost operator+( const Cost lhs, const Cost rhs ) {
    172176        if ( lhs.all == Cost::infinity || rhs.all == Cost::infinity ) return Cost{ Cost::infinity };
Note: See TracChangeset for help on using the changeset viewer.