diff options
author | Attila Molnar <attilamolnar@hush.com> | 2013-04-01 09:50:50 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2013-04-01 09:50:50 -0700 |
commit | 66b90807bb94d88c8a34ec8a1fd7c1558941c47a (patch) | |
tree | b2147238c609c5b1733c518b1b932b0e40ddb8a0 /include/inspircd.h | |
parent | 80e88c163dbd77b06b61d4fd734d51249cc0e172 (diff) | |
parent | fd655fa93a00a5f2993adb7ef562b6dbab8aa87c (diff) |
Merge pull request #452 from SaberUK/master+nuke-hashmap
Purge the deprecated hash_map from existance.
Diffstat (limited to 'include/inspircd.h')
-rw-r--r-- | include/inspircd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 6b7a01b95..13cd92451 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -67,6 +67,11 @@ #include <unistd.h> #endif +#ifdef _WIN32 +# include <unordered_map> +#else +# include <tr1/unordered_map> +#endif #include <sstream> #include <string> #include <vector> @@ -874,3 +879,4 @@ class CommandModule : public Module }; #endif + |