diff options
author | John Hodge <tpg@mutabah.net> | 2016-06-11 00:06:50 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-06-11 00:06:50 +0800 |
commit | 436dad1104d40270d6b6a805b412d4603f27249c (patch) | |
tree | c77dc5dd11ca268e933945c8685030e110e43fa9 /src/ast/path.hpp | |
parent | 44e187830d542acaf280f5139c8dc25e3c9fb72c (diff) | |
download | mrust-436dad1104d40270d6b6a805b412d4603f27249c.tar.gz |
HIR Typecheck - Constants
Diffstat (limited to 'src/ast/path.hpp')
-rw-r--r-- | src/ast/path.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/path.hpp b/src/ast/path.hpp index c31f4bc0..efd367b1 100644 --- a/src/ast/path.hpp +++ b/src/ast/path.hpp @@ -61,7 +61,7 @@ TAGGED_UNION_EX(PathBinding, (), Unbound, ( ::std::string name; }), (TraitMethod, struct { - const Trait* struct_; + const Trait* trait_; ::std::string name; }), |