Changeset ae1d151


Ignore:
Timestamp:
Sep 19, 2022, 4:22:16 PM (19 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
23a08aa0
Parents:
1c7ed2d
Message:

White-space fixes and an improvement to some clean-up.

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Type.hpp

    r1c7ed2d rae1d151  
    412412                std::string typeString() const { return std::string("_") + std::to_string(formal_usage) + "_" + std::to_string(expr_id) + "_" + base->name; }
    413413                bool operator==(const TypeEnvKey & other) const { return base == other.base && formal_usage == other.formal_usage && expr_id == other.expr_id; }
    414 
    415414        };
    416415
  • src/Concurrency/Waitfor.cc

    r1c7ed2d rae1d151  
    402402
    403403                clause.target.function = nullptr;
    404                 clause.target.arguments.empty();
     404                clause.target.arguments.clear();
    405405                clause.condition = nullptr;
    406406        }
  • src/GenPoly/Lvalue2.cc

    r1c7ed2d rae1d151  
    2323}
    2424
    25 
    2625}
Note: See TracChangeset for help on using the changeset viewer.