aboutsummaryrefslogtreecommitdiff
path: root/src/DataView.cpp
blob: b9cef4732c9078094a49f9d1498cf8674fe029a1 (plain)
1
2
3
4
5
6
7
8
9
10
#include "../include/odhtdb/DataView.hpp"
#include <cstring>

namespace odhtdb
{
    bool DataView::operator == (const DataView &other) const
    {
        return size == other.size && memcmp(data, other.data, size) == 0;
    }
}