mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3869 e03df62e-2008-0410-955e-edbf42e46eb7
36 lines
782 B
C
36 lines
782 B
C
/* +------------------------------------+
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
* +------------------------------------+
|
|
*
|
|
* InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
|
|
* E-mail:
|
|
* <brain@chatspike.net>
|
|
* <Craig@chatspike.net>
|
|
* <omster@gmail.com>
|
|
*
|
|
* Written by Craig Edwards, Craig McLure, and others.
|
|
* This program is free but copyrighted software; see
|
|
* the file COPYING for details.
|
|
*
|
|
* ---------------------------------------------------
|
|
*/
|
|
|
|
#ifndef INSPIRCD_HASHMAP_H
|
|
#define INSPIRCD_HASHMAP_H
|
|
|
|
#include "inspircd_config.h"
|
|
|
|
#ifdef GCC3
|
|
|
|
#include <ext/hash_map>
|
|
#define nspace __gnu_cxx
|
|
|
|
#else
|
|
|
|
#include <hash_map>
|
|
#define nspace std
|
|
|
|
#endif
|
|
|
|
#endif
|