Replace TR1 headers with standard headers

Now that the C++11 standard is the default one, we can remove the TR1
headers and classes.
This commit is contained in:
Markus Mäkelä
2018-07-06 10:08:46 +03:00
parent 28ceb1bad8
commit 77a1417479
45 changed files with 100 additions and 112 deletions

View File

@ -23,7 +23,7 @@
#include <functional>
#include <iterator>
#include <string>
#include <tr1/unordered_map>
#include <unordered_map>
#include <maxscale/buffer.h>
#include <maxscale/utils.h>
@ -352,7 +352,7 @@ public:
}
private:
typedef typename std::tr1::unordered_map<id_type, entry_type> ContainerType;
typedef typename std::unordered_map<id_type, entry_type> ContainerType;
ContainerType m_registry;
};