mirror of https://github.com/stella-emu/stella.git
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:
parent
f4d0641219
commit
89e36662fe
|
@ -23,7 +23,6 @@
|
||||||
#include "Array.hxx"
|
#include "Array.hxx"
|
||||||
#include "bspf.hxx"
|
#include "bspf.hxx"
|
||||||
|
|
||||||
|
|
||||||
class StringList : public Common::Array<string>
|
class StringList : public Common::Array<string>
|
||||||
{
|
{
|
||||||
public:
|
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
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue