aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/vespa/config/retriever/configkeyset.cpp
blob: 522bea1671d46a9d465fcffc319fbe33a66d4e5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. 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;
}

}