diff options
author | John Hodge <tpg@mutabah.net> | 2015-11-03 12:25:42 +1100 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2015-11-03 12:25:42 +1100 |
commit | 20ee7442f280ced9e5258876f9fd2212797f868b (patch) | |
tree | 2bb4fd40727ad0402d6d17a6501d5bab05fb5e48 /src/types.hpp | |
parent | 01ec57f596f89d4b52b378975f941e2ed8d2e563 (diff) | |
download | mrust-20ee7442f280ced9e5258876f9fd2212797f868b.tar.gz |
Remove embedded spans (will move to wrapping spans)
Diffstat (limited to 'src/types.hpp')
-rw-r--r-- | src/types.hpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/types.hpp b/src/types.hpp index 90f9ee3b..9146d971 100644 --- a/src/types.hpp +++ b/src/types.hpp @@ -98,7 +98,6 @@ TAGGED_UNION(TypeData, None, class TypeRef:
public Serialisable
{
- Span m_span;
public:
TypeData m_data;
@@ -206,9 +205,6 @@ public: {}
- void set_span(Span sp) { this->m_span = sp; }
- const Span& span() { return this->m_span; }
-
/// Dereference the type (return the result of *type_instance)
bool deref(bool is_implicit);
/// Merge with another type (combines known aspects, conflitcs cause an exception)
|