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:
@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user