--- src/projects.h.orig Sat Dec 9 22:57:49 2000 +++ src/projects.h Thu Apr 7 17:30:36 2005 @@ -21,22 +21,24 @@ #define _PROJECTS_H #include -#include +#include #include #include "dialogs.h" #include "files.h" +using namespace std; + struct str_hasher { size_t operator()(const string &str) const { - hash hasher; + __gnu_cxx::hash hasher; return hasher(str.c_str()); }; }; -typedef hash_map files_map; +typedef __gnu_cxx::hash_map files_map; typedef list files_list; typedef enum {UNKNOWN,C_HEADER,C_SOURCE} FileType;