From a802f0cedc7b5580d746f46ae62fcf8074ae3c49 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 2 Mar 2017 04:41:24 -0800 Subject: 3749 --- html/069hash.cc.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'html/069hash.cc.html') diff --git a/html/069hash.cc.html b/html/069hash.cc.html index 1d97969e..8e6e1f54 100644 --- a/html/069hash.cc.html +++ b/html/069hash.cc.html @@ -78,7 +78,7 @@ if ('onhashchange' in window) { 15 :(before "End Primitive Recipe Checks") 16 case HASH: { 17 if (SIZE(inst.ingredients) != 1) { - 18 raise << maybe(get(Recipe, r).name) << "'hash' takes exactly one ingredient rather than '" << inst.original_string << "'\n" << end(); + 18 raise << maybe(get(Recipe, r).name) << "'hash' takes exactly one ingredient rather than '" << inst.original_string << "'\n" << end(); 19 break; 20 } 21 break; @@ -118,10 +118,10 @@ if ('onhashchange' in window) { 55 56 size_t hash_mu_address(size_t h, reagent& r) { 57 if (r.value == 0) return 0; - 58 trace(9999, "mem") << "location " << r.value << " is " << no_scientific(get_or_insert(Memory, r.value)) << end(); + 58 trace(9999, "mem") << "location " << r.value << " is " << no_scientific(get_or_insert(Memory, r.value)) << end(); 59 r.set_value(get_or_insert(Memory, r.value)); 60 if (r.value != 0) { - 61 trace(9999, "mem") << "skipping refcount at " << r.value << end(); + 61 trace(9999, "mem") << "skipping refcount at " << r.value << end(); 62 r.set_value(r.value+1); // skip refcount 63 } 64 drop_from_type(r, "address"); @@ -173,7 +173,7 @@ if ('onhashchange' in window) { 110 reagent/*copy*/ variant = variant_type(r, tag); 111 // todo: move this error to container definition time 112 if (has_property(variant, "ignore-for-hash")) -113 raise << get(Type, type->value).name << ": /ignore-for-hash won't work in exclusive containers\n" << end(); +113 raise << get(Type, type->value).name << ": /ignore-for-hash won't work in exclusive containers\n" << end(); 114 variant.set_value(r.value + /*skip tag*/1); 115 h = hash(h, variant); 116 return h; @@ -414,11 +414,11 @@ if ('onhashchange' in window) { 351 :(before "End Primitive Recipe Checks") 352 case HASH_OLD: { 353 if (SIZE(inst.ingredients) != 1) { -354 raise << maybe(get(Recipe, r).name) << "'hash_old' takes exactly one ingredient rather than '" << inst.original_string << "'\n" << end(); +354 raise << maybe(get(Recipe, r).name) << "'hash_old' takes exactly one ingredient rather than '" << inst.original_string << "'\n" << end(); 355 break; 356 } 357 if (!is_mu_text(inst.ingredients.at(0))) { -358 raise << maybe(get(Recipe, r).name) << "'hash_old' currently only supports texts (address array character), but got '" << inst.ingredients.at(0).original_string << "'\n" << end(); +358 raise << maybe(get(Recipe, r).name) << "'hash_old' currently only supports texts (address array character), but got '" << inst.ingredients.at(0).original_string << "'\n" << end(); 359 break; 360 } 361 break; -- cgit 1.4.1-2-gfad0