message.h: remove std:binary_function
This PR removes 'binary_function' reference to fix error on freebsd/current ``` no member named 'binary_function' in namespace 'std'; ``` binary_function is deprecated in C++11 and removed in C++17. Good thing that ebusd is not using it anyway, so IMHO it is safe to remove.
This commit is contained in:
@@ -58,7 +58,6 @@ namespace ebusd {
|
|||||||
* template class.
|
* template class.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
using std::binary_function;
|
|
||||||
using std::priority_queue;
|
using std::priority_queue;
|
||||||
using std::deque;
|
using std::deque;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user