From 9ca456bfb318b16c01c461472d80cbeaf9d9ec19 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 9 Jan 1997 22:24:46 +0000 Subject: [PATCH] eliminate MSVC++ warning resulting from passing *this to a base --- src/cas/generic/casdef.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/cas/generic/casdef.h b/src/cas/generic/casdef.h index 4bdbd8039..06f1ebe4b 100644 --- a/src/cas/generic/casdef.h +++ b/src/cas/generic/casdef.h @@ -30,6 +30,12 @@ * Modification Log: * ----------------- * $Log$ + * Revision 1.10 1996/12/06 22:36:26 jhill + * use destroyInProgress flag now functional nativeCount() + * + * Revision 1.9.2.1 1996/11/25 16:30:55 jhill + * WIN32 pragma warning (disable:4355) added + * * Revision 1.9 1996/11/22 19:52:24 jhill * doc * @@ -102,6 +108,14 @@ #include "errMdef.h" // EPICS error codes #include "gdd.h" // EPICS data descriptors +// +// This eliminates a warning resulting from passing *this +// to a base class during derived class construction. +// +#ifdef WIN32 +# pragma warning (disable:4355) +#endif + typedef aitUint32 caStatus;