first round of replacing deprecated typedefs with much nicer using statements
This commit is contained in:
+1
-1
@@ -45,7 +45,7 @@ template <class EdgeDataT> class BaseDataFacade;
|
||||
class OSRM_impl
|
||||
{
|
||||
private:
|
||||
typedef std::unordered_map<std::string, BasePlugin *> PluginMap;
|
||||
using PluginMap = std::unordered_map<std::string, BasePlugin *>;
|
||||
|
||||
public:
|
||||
OSRM_impl(const ServerPaths &paths, const bool use_shared_memory);
|
||||
|
||||
Reference in New Issue
Block a user