mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
323489147a
commit
19310cef03
|
@ -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() {}
|
||||
|
|
Loading…
Reference in New Issue