diff options
author | John Hodge <tpg@ucc.asn.au> | 2017-09-08 12:01:00 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2017-09-08 12:01:00 +0800 |
commit | a901b985312f70e55834445038c3158af16102b9 (patch) | |
tree | aa5883bdfccd7c0414ed8a3c54f3d8cf004500a8 /src/hir/path.hpp | |
parent | fb18453b184e16be703e543847b233a614fb39de (diff) | |
download | mrust-a901b985312f70e55834445038c3158af16102b9.tar.gz |
Typecheck - Various tweaks from librustdoc
Diffstat (limited to 'src/hir/path.hpp')
-rw-r--r-- | src/hir/path.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir/path.hpp b/src/hir/path.hpp index 12e32dd1..7734b657 100644 --- a/src/hir/path.hpp +++ b/src/hir/path.hpp @@ -25,7 +25,7 @@ enum Compare { }; typedef ::std::function<const ::HIR::TypeRef&(const ::HIR::TypeRef&)> t_cb_resolve_type; -typedef ::std::function< ::HIR::Compare(unsigned int, const ::HIR::TypeRef&) > t_cb_match_generics; +typedef ::std::function< ::HIR::Compare(unsigned int, const ::std::string&, const ::HIR::TypeRef&) > t_cb_match_generics; static inline ::std::ostream& operator<<(::std::ostream& os, const Compare& x) { switch(x) |