1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +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 specializations for type Vector, so we can implement Get, Set, and Init differently.
// //
template<> template<>
class CEntityOutputTemplate<class Vector, FIELD_VECTOR> : public CBaseEntityOutput class CEntityOutputTemplate<Vector, FIELD_VECTOR> : public CBaseEntityOutput
{ {
public: public:
void Init( const Vector &value ) void Init( const Vector &value )
@ -150,7 +150,7 @@ public:
template<> template<>
class CEntityOutputTemplate<class Vector, FIELD_POSITION_VECTOR> : public CBaseEntityOutput class CEntityOutputTemplate<Vector, FIELD_POSITION_VECTOR> : public CBaseEntityOutput
{ {
public: public:
void Init( const Vector &value ) void Init( const Vector &value )