diff options
author | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-11 12:27:07 +0800 |
---|---|---|
committer | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-11 12:27:07 +0800 |
commit | d9cba0738c5fe7928ea345f510f505fe777fd8ea (patch) | |
tree | 320766c8c791428d61735d07746cbd5a047f5c3a /src/types.hpp | |
parent | 9cabbe613eb4cff9101d1b8a5757038f59570e97 (diff) | |
download | mrust-d9cba0738c5fe7928ea345f510f505fe777fd8ea.tar.gz |
It broke (working on correct path resolution)
Diffstat (limited to 'src/types.hpp')
-rw-r--r-- | src/types.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/types.hpp b/src/types.hpp index f6a58d2a..4a596522 100644 --- a/src/types.hpp +++ b/src/types.hpp @@ -30,6 +30,9 @@ public: struct TagUnsizedArray {};
TypeRef(TagUnsizedArray _, TypeRef inner_type) {}
+ struct TagArg {};
+ TypeRef(TagArg, ::std::string name) {}
+
struct TagPath {};
TypeRef(TagPath, AST::Path path) {}
|