aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/stringmap.h
blob: 5e8437bab8d7ba76470bc710bfa3a137ee3d0945 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/vespalib/stllike/hash_map.h>

namespace search {

using StringStringMap = vespalib::hash_map<vespalib::string, vespalib::string>;

}