about summary refs log tree commit diff stats
path: root/010vm.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-28 17:08:01 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-28 17:08:01 -0700
commitc7fde8d4e4175b436bc8db92bedd231261827e2c (patch)
treebb8093fcbb2784253a1ff58ff5a4908517c21581 /010vm.cc
parentc7a836797abcbc65c39e7c3cae2ae88b7b878916 (diff)
downloadmu-c7fde8d4e4175b436bc8db92bedd231261827e2c.tar.gz
3272
Move global constants into their own section since we seem to be having
trouble linking in 'extern const' variables when manually cleaving mu.cc
into separate compilation units.
Diffstat (limited to '010vm.cc')
-rw-r--r--010vm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc
index d3c5d189..1302f198 100644
--- a/010vm.cc
+++ b/010vm.cc
@@ -412,7 +412,7 @@ string_tree* property(const reagent& r, const string& name) {
   return NULL;
 }
 
-:(before "End Globals")
+:(before "End Constants")
 const string Ignore(",");  // commas are ignored in mu except within [] strings
 :(code)
 void skip_whitespace_but_not_newline(istream& in) {