From b24eb4766ad12eceaafa2ee0d620e070e21a3293 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 13 Mar 2016 20:26:47 -0700 Subject: 2773 - switch to 'int' This should eradicate the issue of 2771. --- 034call.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '034call.cc') diff --git a/034call.cc b/034call.cc index 111c88df..a878caad 100644 --- a/034call.cc +++ b/034call.cc @@ -35,7 +35,7 @@ def f [ // This requires maintaining a 'stack' of interrupted recipes or 'calls'. struct call { recipe_ordinal running_recipe; - long long int running_step_index; + int running_step_index; // End call Fields call(recipe_ordinal r) { running_recipe = r; @@ -74,8 +74,8 @@ inline call& current_call() { //:: now update routine's helpers -:(replace{} "inline long long int& current_step_index()") -inline long long int& current_step_index() { +:(replace{} "inline int& current_step_index()") +inline int& current_step_index() { assert(!Current_routine->calls.empty()); return current_call().running_step_index; } -- cgit 1.4.1-2-gfad0