Got rid of another d'tor. In this case, it was redundant anyway,

since when a vector is deleted it automatically calls clear on itself.


git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3271 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2016-01-31 03:57:08 +00:00
parent 6dd12ef088
commit 65bb073968
2 changed files with 0 additions and 8 deletions

View File

@ -819,12 +819,6 @@ FrameBuffer::VideoModeList::VideoModeList()
{
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FrameBuffer::VideoModeList::~VideoModeList()
{
clear();
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void FrameBuffer::VideoModeList::add(const VideoMode& mode)
{

View File

@ -443,8 +443,6 @@ class FrameBuffer
{
public:
VideoModeList();
~VideoModeList();
VideoModeList(const VideoModeList&) = default;
VideoModeList& operator=(const VideoModeList&) = default;