]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/hash_map.h
And remember to add this one, just a little header with the #ifdef GCC3 ... stuff...
[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 #include <ext/hash_map>
25 #define nspace __gnu_cxx
26 #else
27 #include <hash_map>
28 #define nspace std
29 #endif
30
31 #endif