From 12a886453214c59b3d3cde00f3cdf27598401bc8 Mon Sep 17 00:00:00 2001 From: Arkshine Date: Sat, 3 May 2014 14:28:12 +0200 Subject: [PATCH] Remove refcounting --- amxmodx/trie_natives.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/amxmodx/trie_natives.h b/amxmodx/trie_natives.h index b575ee68..d0da1d1e 100644 --- a/amxmodx/trie_natives.h +++ b/amxmodx/trie_natives.h @@ -3,7 +3,6 @@ #include "amxmodx.h" #include "sm_stringhashmap.h" -#include #include "CVector.h" using namespace SourceMod; @@ -131,7 +130,7 @@ private: cell data_; }; -struct CellTrie : public ke::Refcounted +struct CellTrie { StringHashMap map; };