// Separate header because this is used often. #ifndef LM_WORD_INDEX__ #define LM_WORD_INDEX__ #include namespace lm { typedef unsigned int WordIndex; const WordIndex kMaxWordIndex = UINT_MAX; } // namespace lm typedef lm::WordIndex LMWordIndex; #endif