Changeset ea6332d for src/ResolvExpr/ConversionCost.h
- Timestamp:
- Aug 15, 2017, 11:59:15 AM (6 years ago)
- Branches:
- aaron-thesis, arm-eh, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- be9288a
- Parents:
- d180746
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/ConversionCost.h
rd180746 rea6332d 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // ConversionCost.h -- 7 // ConversionCost.h -- 8 8 // 9 9 // Author : Richard C. Bilson … … 16 16 #pragma once 17 17 18 #include "SynTree/Visitor.h" 19 #include "SymTab/Indexer.h" 20 #include "Cost.h" 21 #include "TypeEnvironment.h" 18 #include "Cost.h" // for Cost 19 #include "SynTree/Visitor.h" // for Visitor 20 #include "SynTree/SynTree.h" // for Visitor Nodes 21 22 namespace SymTab { 23 class Indexer; 24 } // namespace SymTab 22 25 23 26 namespace ResolvExpr { 27 class TypeEnvironment; 28 24 29 class ConversionCost : public Visitor { 25 30 public: 26 31 ConversionCost( Type *dest, const SymTab::Indexer &indexer, const TypeEnvironment &env ); 27 32 28 33 Cost get_cost() const { return cost; } 29 34
Note: See TracChangeset
for help on using the changeset viewer.