From 104e521c04d1a0cad9c68fb11e250e12ad8917ef Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Wed, 17 Oct 2018 07:08:47 -0700 Subject: 4709 --- html/069hash.cc.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'html/069hash.cc.html') diff --git a/html/069hash.cc.html b/html/069hash.cc.html index 0ea3fa15..1d90a537 100644 --- a/html/069hash.cc.html +++ b/html/069hash.cc.html @@ -79,7 +79,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 '" << to_original_string(inst) << "'\n" << end(); + 18 raise << maybe(get(Recipe, r).name) << "'hash' takes exactly one ingredient rather than '" << to_original_string(inst) << "'\n" << end(); 19 break; 20 } 21 break; @@ -119,7 +119,7 @@ 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("mem") << "location " << r.value << " is " << no_scientific(get_or_insert(Memory, r.value)) << end(); + 58 trace("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 drop_from_type(r, "address"); 61 return hash(h, r); @@ -170,7 +170,7 @@ if ('onhashchange' in window) { 106 reagent/*copy*/ variant = variant_type(r, tag); 107 // todo: move this error to container definition time 108 if (has_property(variant, "ignore-for-hash")) -109 raise << get(Type, type->value).name << ": /ignore-for-hash won't work in exclusive containers\n" << end(); +109 raise << get(Type, type->value).name << ": /ignore-for-hash won't work in exclusive containers\n" << end(); 110 variant.set_value(r.value + /*skip tag*/1); 111 h = hash(h, variant); 112 return h; @@ -396,11 +396,11 @@ if ('onhashchange' in window) { 332 :(before "End Primitive Recipe Checks") 333 case HASH_OLD: { 334 if (SIZE(inst.ingredients) != 1) { -335 raise << maybe(get(Recipe, r).name) << "'hash_old' takes exactly one ingredient rather than '" << to_original_string(inst) << "'\n" << end(); +335 raise << maybe(get(Recipe, r).name) << "'hash_old' takes exactly one ingredient rather than '" << to_original_string(inst) << "'\n" << end(); 336 break; 337 } 338 if (!is_mu_text(inst.ingredients.at(0))) { -339 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(); +339 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(); 340 break; 341 } 342 break; -- cgit 1.4.1-2-gfad0