mirror of https://github.com/stella-emu/stella.git
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:
parent
6dd12ef088
commit
65bb073968
|
@ -819,12 +819,6 @@ FrameBuffer::VideoModeList::VideoModeList()
|
|||
{
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
FrameBuffer::VideoModeList::~VideoModeList()
|
||||
{
|
||||
clear();
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void FrameBuffer::VideoModeList::add(const VideoMode& mode)
|
||||
{
|
||||
|
|
|
@ -443,8 +443,6 @@ class FrameBuffer
|
|||
{
|
||||
public:
|
||||
VideoModeList();
|
||||
~VideoModeList();
|
||||
|
||||
VideoModeList(const VideoModeList&) = default;
|
||||
VideoModeList& operator=(const VideoModeList&) = default;
|
||||
|
||||
|
|
Loading…
Reference in New Issue