1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-04 00:23:25 +08:00

Fixed a template error triggered by gcc 4.0.1 on Mac OS X (bug 4459).

This commit is contained in:
Scott Ehlert 2010-06-21 04:33:22 -05:00
parent 066f9bd2a7
commit 38d7df6bb1

View File

@ -128,7 +128,7 @@ public:
// Template specializations for type Vector, so we can implement Get, Set, and Init differently.
//
template<>
class CEntityOutputTemplate<class Vector, FIELD_VECTOR> : public CBaseEntityOutput
class CEntityOutputTemplate<Vector, FIELD_VECTOR> : public CBaseEntityOutput
{
public:
void Init( const Vector &value )
@ -150,7 +150,7 @@ public:
template<>
class CEntityOutputTemplate<class Vector, FIELD_POSITION_VECTOR> : public CBaseEntityOutput
class CEntityOutputTemplate<Vector, FIELD_POSITION_VECTOR> : public CBaseEntityOutput
{
public:
void Init( const Vector &value )