From 0655735c84f412b7ad3e65381dc24694a9ac8071 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 7 May 2015 15:23:03 -0600 Subject: Goto was confused. The variable was being reset, then used by reference as the next destination. Confusing to debug. --- src/variable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/variable.cpp') diff --git a/src/variable.cpp b/src/variable.cpp index 88ac1bc..4ddec1a 100644 --- a/src/variable.cpp +++ b/src/variable.cpp @@ -1048,7 +1048,7 @@ void Variable::deinitType() Variable::Type Variable::bestType( Variable::Type t1, Variable::Type t2 ) const { - Type tBest = Bu::max( t1, t2 ); + Type tBest = Bu::buMax( t1, t2 ); return tBest; } -- cgit v1.2.3