Remove sp_context_t::plugin.

This commit is contained in:
David Anderson 2015-02-24 21:35:22 -08:00
parent 11ea385169
commit c09c65e4c7
2 changed files with 0 additions and 2 deletions

View File

@ -72,7 +72,6 @@ class PluginContext;
typedef struct sp_context_s
{
sp_plugin_t *plugin;
} sp_context_t;
//#define SPFLAG_PLUGIN_DEBUG (1<<0)

View File

@ -61,7 +61,6 @@ PluginContext::PluginContext(PluginRuntime *pRuntime)
tracker_.pBase = (ucell_t *)malloc(1024);
tracker_.pCur = tracker_.pBase;
tracker_.size = 1024 / sizeof(cell_t);
m_ctx.plugin = const_cast<sp_plugin_t *>(pRuntime->plugin());
}
PluginContext::~PluginContext()