Oops, forgot to remove some dead code.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2733 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2013-05-09 14:24:00 +00:00
parent f4d0641219
commit 89e36662fe
1 changed files with 0 additions and 11 deletions

View File

@ -23,7 +23,6 @@
#include "Array.hxx"
#include "bspf.hxx"
class StringList : public Common::Array<string>
{
public:
@ -60,14 +59,4 @@ class StringList : public Common::Array<string>
}
};
class StringMap : public Common::Array< pair<string,string> >
{
public:
void push_back(const string& name, const string& tag)
{
ensureCapacity(_size + 1);
_data[_size++] = make_pair(name, tag);
}
};
#endif