blob: 714dcd0b48cf9fedd29311761ecce3cb0e976181 (
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
|