Changeset 16d862d for src


Ignore:
Timestamp:
Jul 2, 2026, 5:02:04 PM (46 hours ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
13481af0
Parents:
9d7a19f
Message:

formatting

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Decl.hpp

    r9d7a19f r16d862d  
    99// Author           : Aaron B. Moss
    1010// Created On       : Thu May 9 10:00:00 2019
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Wed Apr  5 10:42:00 2023
    13 // Update Count     : 35
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Sun Jun 28 21:54:18 2026
     13// Update Count     : 36
    1414//
    1515
     
    108108          init( init ), bitfieldWidth( bitWd ) {}
    109109
    110         const Type* get_type() const override { return type; }
     110        const Type * get_type() const override { return type; }
    111111        void set_type( const Type * ty ) override { type = ty; }
    112112
  • src/Common/Eval.cpp

    r9d7a19f r16d862d  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Aug  6 12:11:59 2022
    13 // Update Count     : 119
     12// Last Modified On : Sun Jun 28 21:50:29 2026
     13// Update Count     : 121
    1414//
    1515
     
    200200Evaluation eval( const ast::Expr * expr ) {
    201201        if ( expr ) {
    202 
    203202                return ast::Pass<EvalNew>::read(expr);
    204203                // Evaluation ret = ast::Pass<EvalNew>::read(expr);
    205204                // ret.knownValue = 777;
    206205                // return ret;
    207 
    208206        } else {
    209207                return { 0, false, false };
  • src/GenPoly/GenPoly.cpp

    r9d7a19f r16d862d  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Mon Oct 24 15:19:00 2022
    13 // Update Count     : 17
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Sun Jun 28 21:49:48 2026
     13// Update Count     : 18
    1414//
    1515
     
    252252bool typesPolyCompatible( ast::Type const * lhs, ast::Type const * rhs );
    253253
    254 static bool exprsPolyCompatibleByStaticValue(
    255                 const ast::Expr * e1, const ast::Expr * e2 ) {
     254static bool exprsPolyCompatibleByStaticValue( const ast::Expr * e1, const ast::Expr * e2 ) {
    256255        Evaluation r1 = eval(e1);
    257256        Evaluation r2 = eval(e2);
Note: See TracChangeset for help on using the changeset viewer.