aboutsummaryrefslogtreecommitdiff
path: root/src/DataView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DataView.cpp')
-rw-r--r--src/DataView.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/DataView.cpp b/src/DataView.cpp
index b9cef47..a5232f3 100644
--- a/src/DataView.cpp
+++ b/src/DataView.cpp
@@ -7,4 +7,9 @@ namespace odhtdb
{
return size == other.size && memcmp(data, other.data, size) == 0;
}
+
+ bool DataView::operator != (const DataView &other) const
+ {
+ return !operator==(other);
+ }
}