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/060rewrite_literal_string.cc.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'html/060rewrite_literal_string.cc.html') diff --git a/html/060rewrite_literal_string.cc.html b/html/060rewrite_literal_string.cc.html index a60ef3a0..578ec354 100644 --- a/html/060rewrite_literal_string.cc.html +++ b/html/060rewrite_literal_string.cc.html @@ -99,12 +99,12 @@ if ('onhashchange' in window) { 37 38 void rewrite_literal_string_to_text(const recipe_ordinal r) { 39 recipe& caller = get(Recipe, r); -40 trace(9991, "transform") << "--- rewrite literal strings in recipe " << caller.name << end(); +40 trace(9991, "transform") << "--- rewrite literal strings in recipe " << caller.name << end(); 41 if (contains_numeric_locations(caller)) return; 42 vector<instruction> new_instructions; 43 for (int i = 0; i < SIZE(caller.steps); ++i) { 44 ¦ instruction& inst = caller.steps.at(i); -45 ¦ if (recipes_taking_literal_strings.find(inst.name) == recipes_taking_literal_strings.end()) { +45 ¦ if (recipes_taking_literal_strings.find(inst.name) == recipes_taking_literal_strings.end()) { 46 ¦ ¦ for (int j = 0; j < SIZE(inst.ingredients); ++j) { 47 ¦ ¦ ¦ if (!is_literal_text(inst.ingredients.at(j))) continue; 48 ¦ ¦ ¦ instruction def; @@ -127,10 +127,10 @@ if ('onhashchange' in window) { 65 for (int i = 0; i < SIZE(caller.steps); ++i) { 66 ¦ const instruction& inst = caller.steps.at(i); 67 ¦ for (int in = 0; in < SIZE(inst.ingredients); ++in) -68 ¦ ¦ if (is_numeric_location(inst.ingredients.at(in))) +68 ¦ ¦ if (is_numeric_location(inst.ingredients.at(in))) 69 ¦ ¦ ¦ return true; 70 ¦ for (int out = 0; out < SIZE(inst.products); ++out) -71 ¦ ¦ if (is_numeric_location(inst.products.at(out))) +71 ¦ ¦ if (is_numeric_location(inst.products.at(out))) 72 ¦ ¦ ¦ return true; 73 } 74 return false; -- cgit 1.4.1-2-gfad0