summaryrefslogtreecommitdiff
path: root/src/parse/types.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2015-11-03 12:25:42 +1100
committerJohn Hodge <tpg@mutabah.net>2015-11-03 12:25:42 +1100
commit20ee7442f280ced9e5258876f9fd2212797f868b (patch)
tree2bb4fd40727ad0402d6d17a6501d5bab05fb5e48 /src/parse/types.cpp
parent01ec57f596f89d4b52b378975f941e2ed8d2e563 (diff)
downloadmrust-20ee7442f280ced9e5258876f9fd2212797f868b.tar.gz
Remove embedded spans (will move to wrapping spans)
Diffstat (limited to 'src/parse/types.cpp')
-rw-r--r--src/parse/types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/types.cpp b/src/parse/types.cpp
index 7777de79..d0ca6357 100644
--- a/src/parse/types.cpp
+++ b/src/parse/types.cpp
@@ -43,7 +43,7 @@ TypeRef Parse_Type(TokenStream& lex)
{
ProtoSpan ps = lex.start_span();
TypeRef rv = Parse_Type_Int(lex);
- rv.set_span(lex.end_span(ps));
+ //rv.set_span(lex.end_span(ps));
return rv;
}