Compiles w/o warnings
[iotcloud.git] / version2 / src / C / SlotIndexer.cc
index 2b4cdf4a9b604eeec3dd6d9cf1a353cfb3a9aa90..c3633188f141cf20d1ec4c19b19a633c00df0ca1 100644 (file)
@@ -1,5 +1,7 @@
 #include "SlotIndexer.h"
-
+#include "Slot.h"
+#include "Error.h"
+#include "SlotBuffer.h"
 /**
  * Slot indexer allows slots in both the slot buffer and the new
  * server response to looked up in a consistent fashion.
@@ -8,8 +10,8 @@
  */
 
 SlotIndexer::SlotIndexer(Array<Slot *> *_updates, SlotBuffer *_buffer) :
-       buffer(_buffer),
        updates(_updates),
+       buffer(_buffer),
        firstslotseqnum(updates->get(0)->getSequenceNumber()) {
 }