From b5d27fa62a35142f7d683b377cfbaa0501e58483 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 29 Mar 2010 20:47:22 +0000 Subject: [PATCH] fix build crash --- dtool/src/dtoolbase/numeric_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dtool/src/dtoolbase/numeric_types.h b/dtool/src/dtoolbase/numeric_types.h index d40725b14c..9bc21030a1 100644 --- a/dtool/src/dtoolbase/numeric_types.h +++ b/dtool/src/dtoolbase/numeric_types.h @@ -21,7 +21,7 @@ // the various numeric types for unsigned and signed numbers of // various widths. -#ifdef WIN32_VC +#if defined(WIN32_VC) && !defined(CPPPARSER) typedef signed __int8 PN_int8; typedef signed __int16 PN_int16; typedef signed __int32 PN_int32;