]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/partcache.h
Use nullptr instead of 0 for pointers
[libs/gltk.git] / source / partcache.h
index 9dc71bf184c8652de6b5e4939a8bab9224a2f512..137bce4c37539a8c032f27b36cff0c35afc89f58 100644 (file)
@@ -12,11 +12,10 @@ class Part;
 
 struct CachedPart
 {
-       const Part *part;
-       const GL::Texture2D *texture;
-       GL::Mesh *mesh;
+       const Part *part = nullptr;
+       const GL::Texture2D *texture = nullptr;
+       GL::Mesh *mesh = nullptr;
 
-       CachedPart();
        ~CachedPart();
 };
 
@@ -36,14 +35,12 @@ public:
        typedef std::list<CachedPart> PartList;
 
 private:
-       bool rebuilding;
+       bool rebuilding = false;
        PartList parts;
        PartList::iterator next;
        PartList::iterator current;
 
 public:
-       PartCache();
-
        void begin_rebuild();
        void insert_special(const Part &);
        GL::Mesh &create_mesh(const Part &, const GL::Texture2D &);