aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/fef/handle.h
blob: 6276de54e0af8ee8cc648784c9c66d5167892e6d (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.

#pragma once

#include <cstdint>

namespace search::fef {

using FeatureHandle = uint32_t;
using TermFieldHandle = uint32_t;

const uint32_t IllegalHandle = 0xffffffff;

}