new example code
[feisty_meow.git] / nucleus / library / algorithms / sorts.h
index 592f9903add6815118a4837c4669db0a685ebb29..c6e21abedc66ec69992016668e7e1ec51685db14 100644 (file)
@@ -266,9 +266,9 @@ namespace algorithms {
                }
 
        private:
-               bool _reverse = false;  // is the sorting in reverse?
-               int _total = 0;
-               int *_heapspace = NULL_POINTER;
+               bool _reverse;  // is the sorting in reverse?
+               int _total;  // how many total elements are there?
+               int *_heapspace;  // track a pointer to the array.
        };
 
        /*!