boggle/lib/StanfordCPPLib/private/tokenpatch.h

12 lines
219 B
C
Raw Permalink Normal View History

2024-09-11 17:32:59 +02:00
/*
* File: tokenpatch.h
* ------------------
* This file renames TokenType and WORD to avoid conflict with the
* <windows.h> header.
*/
#ifdef _MSC_VER
# define TokenType TokenTypeT
# define WORD WORD_TC
#endif