update boost on linux
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user