Changes in src/ResolvExpr/Unify.h [6b0b624:a2a77af]
- File:
-
- 1 edited
-
src/ResolvExpr/Unify.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Unify.h
r6b0b624 ra2a77af 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Unify.h -- 7 // Unify.h -- 8 8 // 9 9 // Author : Richard C. Bilson 10 10 // Created On : Sun May 17 13:09:04 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jul 21 23:09:34 201713 // Update Count : 312 // Last Modified On : Sun May 17 13:10:34 2015 13 // Update Count : 2 14 14 // 15 15 16 #pragma once 16 #ifndef UNIFY_H 17 #define UNIFY_H 17 18 18 19 #include <map> … … 36 37 bool widenFirst : 1, widenSecond : 1; 37 38 }; 38 39 bool bindVar( TypeInstType *typeInst, Type *other, const TypeDecl::Data & data, TypeEnvironment &env, AssertionSet &needAssertions, AssertionSet &haveAssertions, const OpenVarSet &openVars, WidenMode widenMode, const SymTab::Indexer &indexer );39 40 bool bindVar( TypeInstType *typeInst, Type *other, TypeDecl::Kind kind, TypeEnvironment &env, AssertionSet &needAssertions, AssertionSet &haveAssertions, const OpenVarSet &openVars, WidenMode widenMode, const SymTab::Indexer &indexer ); 40 41 bool unify( Type *type1, Type *type2, TypeEnvironment &env, AssertionSet &needAssertions, AssertionSet &haveAssertions, OpenVarSet &openVars, const SymTab::Indexer &indexer ); 41 42 bool unify( Type *type1, Type *type2, TypeEnvironment &env, AssertionSet &needAssertions, AssertionSet &haveAssertions, OpenVarSet &openVars, const SymTab::Indexer &indexer, Type *&commonType ); … … 71 72 } // namespace ResolvExpr 72 73 74 #endif // UNIFY_H 75 73 76 // Local Variables: // 74 77 // tab-width: 4 //
Note:
See TracChangeset
for help on using the changeset viewer.