Kaydet (Commit) 90f9e09a authored tarafından Miklos Vajna's avatar Miklos Vajna

CID#1306215 Uninitialized members

Change-Id: Ib1ff285d1f8180ecb0be8448ac4c2d1878dff274
üst c5ca7ede
...@@ -51,7 +51,7 @@ float twipToPixel(float fInput, float zoom); ...@@ -51,7 +51,7 @@ float twipToPixel(float fInput, float zoom);
class Tile class Tile
{ {
public: public:
Tile() : valid(false) {} Tile() : valid(false), m_pBuffer(0) {}
~Tile() { } ~Tile() { }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment