edits
[iotcloud.git] / version2 / src / C / Commit.h
old mode 100644 (file)
new mode 100755 (executable)
index d9f05a9..b7b1978
@@ -5,7 +5,7 @@
 
 class Commit {
 private:
-       Vector<CommitPart *> *parts;
+       MyVector<CommitPart *> *parts;
        uint32_t partCount;
        Hashset<int32_t> *missingParts;
        bool fldisComplete;
@@ -27,7 +27,7 @@ public:
        void addPartDecode(CommitPart *newPart);
        int64_t getSequenceNumber();
        int64_t getTransactionSequenceNumber();
-       Vector<CommitPart *> *getParts();
+       MyVector<CommitPart *> *getParts();
        void addKV(KeyValue *kv);
        void invalidateKey(IoTString *key);
        Hashset<KeyValue *, uintptr_t, 0> *getKeyValueUpdateSet();