From 86f731d26184433661ea58b6ff1a68235df1e6e5 Mon Sep 17 00:00:00 2001 From: "Ben \"root\" Anderson" Date: Tue, 26 Nov 2013 13:48:20 -0600 Subject: [PATCH] Oops! Forgot to change the operator when I made this not-an-assert --- src/CommonMetrics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CommonMetrics.cpp b/src/CommonMetrics.cpp index 34448cd655..b699738e03 100644 --- a/src/CommonMetrics.cpp +++ b/src/CommonMetrics.cpp @@ -84,7 +84,7 @@ static void RemoveStepsTypes( vector& inout, RString sStepsTypesToRem { vector v; split( sStepsTypesToRemove, ",", v ); - if( v.size() > 0 ) return; // Nothing to do! + if( v.size() == 0 ) return; // Nothing to do! // subtract StepsTypes FOREACH_CONST( RString, v, i )