Fix #739: removed usage of std::binary_function deprecated after C++11

This commit is contained in:
vsonnier
2019-06-02 18:56:00 +02:00
parent 0fa818c2fb
commit 9bf25b8feb
4 changed files with 4 additions and 29 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
#include "Timer.h"
#include "SpinMutex.h"
struct map_string_less : public std::binary_function<std::string,std::string,bool>
struct map_string_less
{
bool operator()(const std::string& a,const std::string& b) const
{