about summary refs log tree commit diff stats
path: root/014literal_string.cc
diff options
context:
space:
mode:
Diffstat (limited to '014literal_string.cc')
-rw-r--r--014literal_string.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/014literal_string.cc b/014literal_string.cc
index a195c195..26d7375d 100644
--- a/014literal_string.cc
+++ b/014literal_string.cc
@@ -107,10 +107,10 @@ void slurp_quoted_comment_aware(istream& in, ostream& out) {
 :(after "Parsing reagent(string s)")
 if (s.at(0) == '[') {
   assert(*s.rbegin() == ']');
-  // delete [] delimiters
-  s.erase(0, 1);
-  strip_last(s);
   name = s;
+  // delete [] delimiters
+  name.erase(0, 1);
+  strip_last(name);
   type = new type_tree("literal-string", 0);
   return;
 }