aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/unique_issues.cpp
blob: 9f41efaeda329288767743ce8fecbd066a4b8a0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "unique_issues.h"

namespace search {

void
UniqueIssues::handle(const vespalib::Issue &issue)
{
    _messages.insert(issue.message());
}

}