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:
Alex Samorukov
2023-07-19 19:48:23 +02:00
committed by GitHub
parent d442184f84
commit 329c175b0c
-1
View File
@@ -58,7 +58,6 @@ namespace ebusd {
* template class.
*/
using std::binary_function;
using std::priority_queue;
using std::deque;