]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/hash_map.h
Enhance with new numerics for latest turkish moron detection
[user/henk/code/inspircd.git] / include / hash_map.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *                <omster@gmail.com>
10  *
11  * Written by Craig Edwards, Craig McLure, and others.
12  * This program is free but copyrighted software; see
13  *            the file COPYING for details.
14  *
15  * ---------------------------------------------------
16  */
17  
18 #ifndef INSPIRCD_HASHMAP_H
19 #define INSPIRCD_HASHMAP_H
20
21 #include "inspircd_config.h"
22
23 #ifdef GCC3
24
25 #include <ext/hash_map>
26 #define nspace __gnu_cxx
27
28 #else
29
30 #include <hash_map>
31 #define nspace std
32
33 #endif
34
35 #endif