diff options
| -rw-r--r-- | project2/common/if.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/common/if.cpp b/project2/common/if.cpp index 677cd63..c65315e 100644 --- a/project2/common/if.cpp +++ b/project2/common/if.cpp @@ -36,7 +36,7 @@ IfSet::passes() const  		return all(checks, boost::bind(&ParamChecker::performCheck, _1));  	}  	else if (mode == Or) { -		return any(checks, boost::bind(&ParamChecker::performCheck, _1)); +		return ::any(checks, boost::bind(&ParamChecker::performCheck, _1));  	}  	throw IfModeIsNonsense(getName());  }  | 
