diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-02-22 15:44:27 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-02-22 15:44:27 -0800 |
commit | 6b3fc927c2fbad4bd555bc6952ae960e7d191d62 (patch) | |
tree | c7128c8081ae399fbdee8a70b187caafee153bb1 | |
parent | f86084013db0fc8f827badea151bfb03bc9ac156 (diff) | |
download | mu-6b3fc927c2fbad4bd555bc6952ae960e7d191d62.tar.gz |
2687
-rw-r--r-- | 010vm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/010vm.cc b/010vm.cc index f698cc6c..1bd45033 100644 --- a/010vm.cc +++ b/010vm.cc @@ -496,7 +496,7 @@ string to_string(const type_tree* type) { void dump(const type_tree* x, ostream& out) { if (!x->left && !x->right) { - out << x->value; + dump(x->value, out); return; } out << '('; |