aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/btree/noaggregated.h
blob: 68e2d7e4e6ace411a575ef3718d2476c85a96c3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace vespalib::btree {

class NoAggregated
{
public:
    NoAggregated() { }
    bool operator==(const NoAggregated &) const { return true; }
    bool operator!=(const NoAggregated &) const { return false; }
};

}