Merge branch 'master' into cxx17
This commit is contained in:
commit
dd83a492c8
1 changed files with 1 additions and 14 deletions
|
@ -947,7 +947,7 @@ namespace EC
|
||||||
\endcode
|
\endcode
|
||||||
|
|
||||||
\return The index of the function, used for deletion with
|
\return The index of the function, used for deletion with
|
||||||
deleteForMatchingFunction() or filtering with
|
removeForMatchingFunction() or filtering with
|
||||||
keepSomeMatchingFunctions() or removeSomeMatchingFunctions(),
|
keepSomeMatchingFunctions() or removeSomeMatchingFunctions(),
|
||||||
or calling with callForMatchingFunction().
|
or calling with callForMatchingFunction().
|
||||||
*/
|
*/
|
||||||
|
@ -1342,19 +1342,6 @@ namespace EC
|
||||||
return removeSomeMatchingFunctions<decltype(list)>(list);
|
return removeSomeMatchingFunctions<decltype(list)>(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
|
||||||
\brief Deletes the specified function.
|
|
||||||
|
|
||||||
The index of a function is returned from addForMatchingFunction()
|
|
||||||
so there is no other way to get the index of a function.
|
|
||||||
|
|
||||||
\return True if function existed and has been deleted.
|
|
||||||
*/
|
|
||||||
bool deleteForMatchingFunction(std::size_t index)
|
|
||||||
{
|
|
||||||
return forMatchingFunctions.erase(index) == 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\brief Sets the context pointer of a stored function
|
\brief Sets the context pointer of a stored function
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue