From 5f26c7e70ce62cb8a29eaa31e39b41c9ee22e67e Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Wed, 27 May 2015 06:50:31 -0400 Subject: [PATCH] Fix '>>' template error on older compiler versions. --- public/datacache/imdlcache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/datacache/imdlcache.h b/public/datacache/imdlcache.h index 2d5d5c12..5be2ac3d 100644 --- a/public/datacache/imdlcache.h +++ b/public/datacache/imdlcache.h @@ -227,7 +227,7 @@ public: virtual void DumpDictionaryState() = 0; virtual MDLHandle_t CreateCombinedModel(char const* name) = 0; virtual bool CreateCombinedModel(MDLHandle_t handle) = 0; - virtual bool SetCombineModels(MDLHandle_t handle, CUtlVector> const& unk2) = 0; + virtual bool SetCombineModels(MDLHandle_t handle, CUtlVector const& unk2) = 0; virtual bool FinishCombinedModel(MDLHandle_t handle, void* unk2, void* unk3) = 0; virtual bool IsCombinedPlaceholder(MDLHandle_t handle) = 0; virtual bool IsCombinedModel(MDLHandle_t handle) = 0;