From 4fb33274fbbd126ee5df58a7ba037bb76fdb113b Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Thu, 3 Nov 2011 14:02:10 -0500 Subject: [PATCH] Fixed compiler error in icvar.h when memalloc.h wasn't included (bug 5159). --- public/icvar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/icvar.h b/public/icvar.h index 7a9b066c..6e073e91 100644 --- a/public/icvar.h +++ b/public/icvar.h @@ -1,4 +1,4 @@ -//===== Copyright � 1996-2005, Valve Corporation, All rights reserved. ======// +//===== Copyright � 1996-2005, Valve Corporation, All rights reserved. ======// // // Purpose: // @@ -13,7 +13,7 @@ #include "appframework/IAppSystem.h" #include "tier1/iconvar.h" #include "tier1/utlvector.h" - +#include "tier0/memalloc.h" class ConCommandBase; class ConCommand;