From dd4114b9e985f2fea0cf0f73ed765484d3df2f47 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 27 Jan 2019 11:07:20 +0800 Subject: AST - (minor) Tweak printing of lifetime params --- src/ast/path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ast/path.cpp') diff --git a/src/ast/path.cpp b/src/ast/path.cpp index 0c8c4c69..092f5962 100644 --- a/src/ast/path.cpp +++ b/src/ast/path.cpp @@ -109,7 +109,7 @@ PathBinding_Macro PathBinding_Macro::clone() const for(const auto& v : x.m_lifetimes) { if(needs_comma) os << ", "; needs_comma = true; - os << "'" << v; + os << v; } for(const auto& v : x.m_types) { if(needs_comma) os << ", "; -- cgit v1.2.3