--- libH/Util.hpp.old 2009-01-19 19:20:34.000000000 +0000 +++ libH/Util.hpp.old 2009-01-19 19:23:27.000000000 +0000 @@ -36,6 +36,7 @@ #include "Debug.hpp" #include #include +#include ////////////////////////////////////////////////////////////////////////////// // Namespace @@ -57,13 +58,13 @@ * \brief Apply function f to all elements in Object o * \param object The object to apply functor to * \param functor The function that modifies each object - * \return result of std::for_each (unary_function) + * \return result of for_each (unary_function) * * This is essentially a short cut for std::for_each **/ template inline Functor for_all(Object & object, Functor functor) { - return std::for_each(object.begin(), object.end(), functor); + return for_each(object.begin(), object.end(), functor); } /**