diff options
author | John Hodge <tpg@mutabah.net> | 2016-03-13 17:59:41 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-03-13 17:59:41 +0800 |
commit | 9a3987bb1575c4ab1eae9c065e907773fa3dcf17 (patch) | |
tree | d3e227819939f337afa7bff4d8e9cfa6522ef8cc /src/ast/path.hpp | |
parent | 5c2691b60c870f4669ba0b8e7ecc593f64a4265b (diff) | |
download | mrust-9a3987bb1575c4ab1eae9c065e907773fa3dcf17.tar.gz |
Parse - Rework to place spans on types
Diffstat (limited to 'src/ast/path.hpp')
-rw-r--r-- | src/ast/path.hpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ast/path.hpp b/src/ast/path.hpp index 4fc08bb1..1260ece3 100644 --- a/src/ast/path.hpp +++ b/src/ast/path.hpp @@ -130,7 +130,6 @@ public: private: /// The crate defining the root of this path (used for path resolution) ::std::string m_crate; - Span m_span; public: Class m_class; @@ -198,9 +197,6 @@ public: } - const Span& span() const { - return m_span; - } Class::Tag class_tag() const { return m_class.tag(); } |