Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/CandidatePrinter.cpp

    r39d8950 r1622af5  
    1010// Created On       : Tue Nov  9  9:54:00 2021
    1111// Last Modified By : Andrew Beach
    12 // Last Modified On : Wed Mar 16 13:56:00 2022
    13 // Update Count     : 1
     12// Last Modified On : Tue Nov  9 15:47:00 2021
     13// Update Count     : 0
    1414//
    1515
     
    2222#include "AST/TranslationUnit.hpp"
    2323#include "ResolvExpr/CandidateFinder.hpp"
    24 #include "ResolvExpr/Resolver.h"
    2524
    2625#include <iostream>
     
    3029namespace {
    3130
    32 class CandidatePrintCore : public ast::WithSymbolTable,
    33                 public ast::WithConstTranslationUnit {
     31class CandidatePrintCore : public ast::WithSymbolTable {
    3432        std::ostream & os;
    3533public:
     
    3836        void postvisit( const ast::ExprStmt * stmt ) {
    3937                ast::TypeEnvironment env;
    40                 CandidateFinder finder( { symtab, transUnit().global }, env );
     38                CandidateFinder finder( symtab, env );
    4139                finder.find( stmt->expr, ResolvMode::withAdjustment() );
    4240                int count = 1;
Note: See TracChangeset for help on using the changeset viewer.