From 38d7df6bb1be7839da5171d6cda9f3c69c3534e0 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Mon, 21 Jun 2010 04:33:22 -0500 Subject: [PATCH] Fixed a template error triggered by gcc 4.0.1 on Mac OS X (bug 4459). --- game/server/entityoutput.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/server/entityoutput.h b/game/server/entityoutput.h index c495d6b4..73f9216a 100644 --- a/game/server/entityoutput.h +++ b/game/server/entityoutput.h @@ -128,7 +128,7 @@ public: // Template specializations for type Vector, so we can implement Get, Set, and Init differently. // template<> -class CEntityOutputTemplate : public CBaseEntityOutput +class CEntityOutputTemplate : public CBaseEntityOutput { public: void Init( const Vector &value ) @@ -150,7 +150,7 @@ public: template<> -class CEntityOutputTemplate : public CBaseEntityOutput +class CEntityOutputTemplate : public CBaseEntityOutput { public: void Init( const Vector &value )