diff options
Diffstat (limited to 'include/odhtdb/DataView.hpp')
-rw-r--r-- | include/odhtdb/DataView.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/odhtdb/DataView.hpp b/include/odhtdb/DataView.hpp index 0ecf9fb..2f22d83 100644 --- a/include/odhtdb/DataView.hpp +++ b/include/odhtdb/DataView.hpp @@ -12,6 +12,7 @@ namespace odhtdb DataView() : data(nullptr), size(0) {} DataView(void *_data, usize _size) : data(_data), size(_size) {} bool operator == (const DataView &other) const; + bool operator != (const DataView &other) const; void *data; usize size; |