Small formatting change

This commit is contained in:
Pavel Krajcevski 2014-04-02 13:57:17 -04:00
parent ed2bcc3838
commit 640b098af7
2 changed files with 3 additions and 5 deletions

View file

@ -44,8 +44,9 @@
#include "ImageLoaderPNG.h" #include "ImageLoaderPNG.h"
#include <algorithm> #include <algorithm>
#include <cstdio>
#include <cassert> #include <cassert>
#include <cstdio>
#include <cstring>
#include <png.h> #include <png.h>
@ -79,9 +80,6 @@ ImageLoaderPNG::ImageLoaderPNG(const unsigned char *rawData)
{ {
} }
ImageLoaderPNG::~ImageLoaderPNG() {
}
bool ImageLoaderPNG::ReadData() { bool ImageLoaderPNG::ReadData() {
const int kNumSigBytesToRead = 8; const int kNumSigBytesToRead = 8;

View file

@ -49,7 +49,7 @@
class ImageLoaderPNG : public ImageLoader { class ImageLoaderPNG : public ImageLoader {
public: public:
ImageLoaderPNG(const unsigned char *rawData); ImageLoaderPNG(const unsigned char *rawData);
virtual ~ImageLoaderPNG(); virtual ~ImageLoaderPNG() { }
virtual bool ReadData(); virtual bool ReadData();