Removed using namespace in header files
							parent
							
								
									a23127a315
								
							
						
					
					
						commit
						dd79bacfab
					
				|  | @ -44,7 +44,7 @@ namespace gtsam { | |||
|   bool BayesNet<CONDITIONAL>::equals(const BayesNet& cbn, double tol) const { | ||||
|     if (size() != cbn.size()) | ||||
|       return false; | ||||
|     return equal(conditionals_.begin(), conditionals_.end(), | ||||
|     return std::equal(conditionals_.begin(), conditionals_.end(), | ||||
|         cbn.conditionals_.begin(), equals_star<CONDITIONAL>(tol)); | ||||
|   } | ||||
| 
 | ||||
|  |  | |||
|  | @ -35,8 +35,6 @@ | |||
| using boost::assign::operator+=; | ||||
| #include <boost/format.hpp> | ||||
| 
 | ||||
| namespace lam = boost::lambda; | ||||
| 
 | ||||
| namespace gtsam { | ||||
| 
 | ||||
| 	/* ************************************************************************* */ | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue