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:
@ -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 )
|
||||||
|
Reference in New Issue
Block a user