aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/retriever/configkeyset.cpp
blob: 9e81c330701a73abac68e6366077bfc824b7c098 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "configkeyset.h"

namespace config {

ConfigKeySet &
ConfigKeySet::add(const ConfigKeySet & configKeySet)
{
    insert(configKeySet.begin(), configKeySet.end());
    return *this;
}

}