From: Alex Rousskov Date: Fri, 26 Nov 2010 04:51:23 +0000 (-0700) Subject: Added missing namespace to the std::find() call to make Sun's compiler happier. X-Git-Tag: take1~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef890f9d8c689a390e5a9171b2572ee7e38af8a7;p=thirdparty%2Fsquid.git Added missing namespace to the std::find() call to make Sun's compiler happier. --- diff --git a/src/cache_manager.cc b/src/cache_manager.cc index 07fa408189..95c9d27c5b 100644 --- a/src/cache_manager.cc +++ b/src/cache_manager.cc @@ -81,7 +81,7 @@ void CacheManager::registerProfile(const Mgr::ActionProfile::Pointer &profile) { Must(profile != NULL); - if (find(menu_.begin(), menu_.end(), profile) == menu_.end()) { + if (std::find(menu_.begin(), menu_.end(), profile) == menu_.end()) { menu_.push_back(profile); debugs(16, 3, HERE << "registered profile: " << *profile); } else {