plugging in new approach for testing
[feisty_meow.git] / nucleus / library / algorithms / sorts.h
index 592f9903add6815118a4837c4669db0a685ebb29..0b7cfc4bd9da20a2ea99656b17552ae063dc72f4 100644 (file)
@@ -18,6 +18,8 @@
 
 #include <mathematics/chaos.h>
 
+#include <system_helper.h>
+
 namespace algorithms {
 
        /*
@@ -266,9 +268,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.
        };
 
        /*!