Remove refcounting

This commit is contained in:
Arkshine 2014-05-03 14:28:12 +02:00
parent d933783629
commit 12a8864532

View File

@ -3,7 +3,6 @@
#include "amxmodx.h"
#include "sm_stringhashmap.h"
#include <am-refcounting.h>
#include "CVector.h"
using namespace SourceMod;
@ -131,7 +130,7 @@ private:
cell data_;
};
struct CellTrie : public ke::Refcounted<CellTrie>
struct CellTrie
{
StringHashMap<Entry> map;
};