Tidy up includes:

* Replace boost with std equivalents:
  - bind, ref, cref, function, placeholders
* More "include what you use"
* Remove unnecessary includes
This commit is contained in:
Vinnie Falco
2014-06-15 18:26:50 -07:00
parent cf3eb24eb0
commit 506910147f
125 changed files with 343 additions and 1012 deletions

View File

@@ -124,13 +124,13 @@ public:
iterator iter (m_back.find (value.first));
if (iter != m_back.end())
return std::make_pair (
boost::ref (iter->second),
boost::ref (m_back_info));
std::ref (iter->second),
std::ref (m_back_info));
std::pair <iterator, bool> result (
m_front.insert (value));
return std::make_pair (
boost::ref (result.first->second),
boost::ref (m_front_info));
std::ref (result.first->second),
std::ref (m_front_info));
}
void cycle ()