aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/data/slime/named_symbol_lookup.cpp
blob: 05c6fff67c9596c3b8531cdbd2d1792e32a97997 (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 "named_symbol_lookup.h"
#include "symbol_table.h"

namespace vespalib::slime {

Symbol
NamedSymbolLookup::lookup() const {
    return _table.lookup(_name);
}

} // namespace vespalib::slime