summaryrefslogtreecommitdiff
path: root/klm/lm/word_index.hh
blob: 67841c30ac95a2a076a51419ee2b03498f8029f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Separate header because this is used often.
#ifndef LM_WORD_INDEX__
#define LM_WORD_INDEX__

namespace lm {
typedef unsigned int WordIndex;
} // namespace lm

typedef lm::WordIndex LMWordIndex;

#endif