diff options
| author | 2018-07-31 03:02:16 +0100 | |
|---|---|---|
| committer | 2019-01-25 02:49:03 +0000 | |
| commit | fb17bba197a190b5865e2ddf4f70019a6dc23ba2 (patch) | |
| tree | afd8943530eceb5b14f457856edd9257bdc440ca /include/command_parse.h | |
| parent | Use C++14 compilers in Docker on Travis. (diff) | |
Replace the TR1NS macro with the std namespace.
Diffstat (limited to 'include/command_parse.h')
| -rw-r--r-- | include/command_parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/command_parse.h b/include/command_parse.h index ccea2ac50..50a0eb78b 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -30,7 +30,7 @@ class CoreExport CommandParser { public: - typedef TR1NS::unordered_map<std::string, Command*, irc::insensitive, irc::StrHashComp> CommandMap; + typedef std::unordered_map<std::string, Command*, irc::insensitive, irc::StrHashComp> CommandMap; private: /** Process a command from a user. |
