Oops! Forgot to change the operator when I made this not-an-assert

This commit is contained in:
Ben "root" Anderson
2013-11-26 13:48:20 -06:00
parent cf4f6c35a0
commit 86f731d261
+1 -1
View File
@@ -84,7 +84,7 @@ static void RemoveStepsTypes( vector<StepsType>& inout, RString sStepsTypesToRem
{
vector<RString> 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 )