update boost on linux

This commit is contained in:
Bassem Girgis
2019-08-10 16:06:25 -05:00
parent 76ad52be58
commit 861b918727
5363 changed files with 483306 additions and 116507 deletions

View File

@@ -164,6 +164,19 @@ public:
m_definitions[name] = value;
}
bool operator==(const function<Signature>& other) const
{
return
(m_name == other.m_name)
&& (m_definitions == other.m_definitions)
&& (m_source == other.m_source);
}
bool operator!=(const function<Signature>& other) const
{
return !(*this == other);
}
/// \internal_
detail::invoked_function<result_type, boost::tuple<> >
operator()() const