Re-fix win32 builds. Stupid C++ templated class inheritance fail.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1839 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
Jake.Stine 2009-09-17 05:24:47 +00:00
parent 323489147a
commit 19310cef03
1 changed files with 3 additions and 5 deletions

View File

@ -550,12 +550,10 @@ template< class Key, class T >
class HashMap : public google::dense_hash_map<Key, T, CommonHashClass>
{
public:
#ifndef _MSC_VER
typedef typename google::dense_hash_map<Key, T, CommonHashClass> __super;
#endif
typedef typename google::dense_hash_map<Key, T, CommonHashClass> _parent;
using __super::operator[];
using __super::end;
using _parent::operator[];
using _parent::end;
typedef typename __super::const_iterator const_iterator;
virtual ~HashMap() {}