boggle/lib/StanfordCPPLib/private/tokenpatch.h
2024-09-11 17:33:32 +02:00

12 lines
219 B
C
Executable File

/*
* 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