Fix slex and lexertl example token counts for MSVC

The non-MS-extension case was updated correctly but this was missed
until Appveyor CI
This commit is contained in:
Jeff Trull
2026-04-28 14:05:15 -07:00
committed by Jeff Trull
parent a0691e6172
commit ee5bfe517f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ namespace lexer {
// The following numbers are the array sizes of the token regex's which we
// need to specify to make the CW compiler happy (at least up to V9.5).
#if BOOST_WAVE_SUPPORT_MS_EXTENSIONS != 0
#define INIT_DATA_SIZE 175
#define INIT_DATA_SIZE 176
#else
#define INIT_DATA_SIZE 159
#endif
@@ -52,7 +52,7 @@ namespace boost { namespace wave { namespace cpplexer { namespace lexertl
// The following numbers are the array sizes of the token regex's which we
// need to specify to make the CW compiler happy (at least up to V9.5).
#if BOOST_WAVE_SUPPORT_MS_EXTENSIONS != 0
#define INIT_DATA_SIZE 176
#define INIT_DATA_SIZE 177
#else
#define INIT_DATA_SIZE 160
#endif