From c0f84b1ffa18eaf6f399aafe462f2a0f705dd009 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 7 Dec 2017 16:22:23 -0800 Subject: 4155 --- html/010vm.cc.html | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'html/010vm.cc.html') diff --git a/html/010vm.cc.html b/html/010vm.cc.html index bc742c78..f67b4efa 100644 --- a/html/010vm.cc.html +++ b/html/010vm.cc.html @@ -211,7 +211,7 @@ if ('onhashchange' in window) { 147 // End Mu Types Initialization 148 } 149 void teardown_types() { -150 for (map<type_ordinal, type_info>::iterator p = Type.begin(); p != Type.end(); ++p) { +150 for (map<type_ordinal, type_info>::iterator p = Type.begin(); p != Type.end(); ++p) { 151 ¦ for (int i = 0; i < SIZE(p->second.elements); ++i) 152 ¦ ¦ p->second.elements.clear(); 153 } @@ -647,7 +647,7 @@ if ('onhashchange' in window) { 583 } 584 585 void dump_memory() { -586 for (map<int, double>::iterator p = Memory.begin(); p != Memory.end(); ++p) { +586 for (map<int, double>::iterator p = Memory.begin(); p != Memory.end(); ++p) { 587 ¦ cout << p->first << ": " << no_scientific(p->second) << '\n'; 588 } 589 } @@ -754,11 +754,11 @@ if ('onhashchange' in window) { 690 string to_string(const string_tree* property) { 691 if (!property) return "()"; 692 ostringstream out; -693 dump(property, out); +693 dump(property, out); 694 return out.str(); 695 } 696 -697 void dump(const string_tree* x, ostream& out) { +697 void dump(const string_tree* x, ostream& out) { 698 if (!x) return; 699 if (x->atom) { 700 ¦ out << '"' << x->value << '"'; @@ -767,14 +767,14 @@ if ('onhashchange' in window) { 703 out << '('; 704 const string_tree* curr = x; 705 while (curr && !curr->atom) { -706 ¦ dump(curr->left, out); +706 ¦ dump(curr->left, out); 707 ¦ if (curr->right) out << ' '; 708 ¦ curr = curr->right; 709 } 710 // check for dotted list; should never happen 711 if (curr) { 712 ¦ out << ". "; -713 ¦ dump(curr, out); +713 ¦ dump(curr, out); 714 } 715 out << ')'; 716 } @@ -782,32 +782,32 @@ if ('onhashchange' in window) { 718 string to_string(const type_tree* type) { 719 if (type == NULL) return "()"; 720 ostringstream out; -721 dump(type, out); +721 dump(type, out); 722 return out.str(); 723 } 724 -725 void dump(const type_tree* x, ostream& out) { +725 void dump(const type_tree* x, ostream& out) { 726 if (!x) return; 727 if (x->atom) { -728 ¦ dump(x->value, out); +728 ¦ dump(x->value, out); 729 ¦ return; 730 } 731 out << '('; 732 const type_tree* curr = x; 733 while (curr && !curr->atom) { -734 ¦ dump(curr->left, out); +734 ¦ dump(curr->left, out); 735 ¦ if (curr->right) out << ' '; 736 ¦ curr = curr->right; 737 } 738 // check for dotted list; should never happen 739 if (curr) { 740 ¦ out << ". "; -741 ¦ dump(curr, out); +741 ¦ dump(curr, out); 742 } 743 out << ')'; 744 } 745 -746 void dump(type_ordinal type, ostream& out) { +746 void dump(type_ordinal type, ostream& out) { 747 if (contains_key(Type, type)) 748 ¦ out << get(Type, type).name; 749 else -- cgit 1.4.1-2-gfad0