/////////////////////////////////////////////////////////////////////////////
-// Name: hashmap.cpp
+// Name: src/common/hashmap.cpp
// Purpose: wxHashMap implementation
// Author: Mattia Barbon
// Modified by:
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation "hashmap.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
-#pragma hdrstop
+ #pragma hdrstop
#endif
#include "wx/hashmap.h"
}
#endif
+#if !wxUSE_STL || !defined(HAVE_STL_HASH_MAP)
+
/* from SGI STL */
const unsigned long _wxHashTableBase2::ms_primes[prime_count] =
{
return node;
}
+#endif // !wxUSE_STL || !defined(HAVE_STL_HASH_MAP)