aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/enummodifier.cpp
blob: f6857cac02a8338686343a4df19eaf514d0e6ede (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.

#include "enummodifier.h"

namespace search::attribute {

EnumModifier::EnumModifier(std::shared_mutex &lock, attribute::InterlockGuard &interlockGuard)
    : _enumLock(lock)
{
    (void) interlockGuard;
}

EnumModifier::~EnumModifier() = default;

}