The line below is inside a for loop. If the method fails, it needs to break. CATEGORY_1 is an enum. I added this enum as a new parameter to AddToList method with a default value. If you see closely below, I actually made the mistake of putting the comma and the enum outside the parameter list of the function. This compiles perfectly fine with VS2010. So I had a hard time finding that that the default value was being passed for that parameter instead of CATEGORY_1. Does anyone know why this succeeds?
if (! AddToList(obj1, (unsigned int) Val), CATEGORY_1)
{
break;
}