diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2021-02-16 20:52:37 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2021-02-16 20:52:37 +0100 |
commit | d42ed33bb9112d80ae9adc926b7bd818a4d35f8d (patch) | |
tree | e391d2e07326abc6e33955dbed8303e1e0d1444f | |
parent | 3f4272c2e1e495cb6874b80169229504955be5dd (diff) |
Storage: remove unimplemented methods from Head
-rw-r--r-- | include/erebos/storage.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/erebos/storage.h b/include/erebos/storage.h index 4f67a4b..07e7a4f 100644 --- a/include/erebos/storage.h +++ b/include/erebos/storage.h @@ -484,9 +484,6 @@ public: const T & operator*() const { return *mstored; } const T * operator->() const { return &(*mstored); } - std::vector<Stored<T>> previous() const; - bool precedes(const Stored<T> &) const; - UUID id() const { return mid; } const Stored<T> & stored() const { return mstored; } const Ref & ref() const { return mstored.ref(); } |