JANITORIAL: Remove unnecessary empty default constructors/destructors.

This commit is contained in:
Christoph Mallon 2011-08-09 21:02:32 +02:00 committed by Alyssa Milburn
parent d58c5133f4
commit e618e6794d
5 changed files with 0 additions and 13 deletions

View file

@ -65,9 +65,6 @@ protected:
*/
class Overlay : public DefaultDisplayClient {
public:
Overlay() {}
~Overlay() {}
void init();
bool allocate();
void setBytesPerPixel(uint32 size);
@ -85,7 +82,6 @@ public:
memset(&_pixelFormat, 0, sizeof(_pixelFormat));
memset(&_frameBuffer, 0, sizeof(_frameBuffer));
}
~Screen() {}
void init();
bool allocate();