KWSys 2016-01-11 (bc07fbf7)
Code extracted from: http://public.kitware.com/KWSys.git at commit bc07fbf7a884713815b3ac72d85487bf6aa338f5 (master). Upstream Shortlog ----------------- James Johnston (1): bc07fbf7 Configure: Silence spurious warnings from Embarcadero compiler.
This commit is contained in:
parent
8e7356a292
commit
ffcc235c7e
|
@ -115,6 +115,11 @@
|
||||||
# pragma warning (disable: 4710) /* function not inlined */
|
# pragma warning (disable: 4710) /* function not inlined */
|
||||||
# pragma warning (disable: 4786) /* identifier truncated in debug info */
|
# pragma warning (disable: 4786) /* identifier truncated in debug info */
|
||||||
# endif
|
# endif
|
||||||
|
# if defined(__BORLANDC__) && !defined(__cplusplus)
|
||||||
|
/* Code has no effect; raised by winnt.h in C (not C++) when ignoring an
|
||||||
|
unused parameter using "(param)" syntax (i.e. no cast to void). */
|
||||||
|
# pragma warn -8019
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* MSVC 6.0 in release mode will warn about code it produces with its
|
/* MSVC 6.0 in release mode will warn about code it produces with its
|
||||||
|
|
|
@ -74,6 +74,12 @@
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__BORLANDC__) && !defined(__cplusplus)
|
||||||
|
/* Code has no effect; raised by winnt.h in C (not C++) when ignoring an
|
||||||
|
unused parameter using "(param)" syntax (i.e. no cast to void). */
|
||||||
|
# pragma warn -8019
|
||||||
|
#endif
|
||||||
|
|
||||||
/*--------------------------------------------------------------------------*/
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
/* Full path to the directory in which this executable is built. Do
|
/* Full path to the directory in which this executable is built. Do
|
||||||
|
|
Loading…
Reference in New Issue