blob: 3aa6cc234147348a0039d90ca2d844b25498286d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef WORD_ID_H_
#define WORD_ID_H_
#include <limits>
typedef int WordID;
//namespace {
static const WordID null_wordid=std::numeric_limits<WordID>::max();
//}
#endif
|