Skip to content
Snippets Groups Projects
Commit 14c14f3d authored by Brad King's avatar Brad King
Browse files

COMP: Quiet aggressive Borland warnings in KWSys

This disables Borland warning 8027 while compiling KWSys source files.
It provides no useful information.
parent 5b50e460
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,13 @@
# define kwsysEXPORT @KWSYS_NAMESPACE@_EXPORT
#endif
/* Disable some warnings inside kwsys source files. */
#if defined(KWSYS_NAMESPACE)
# if defined(__BORLANDC__)
# pragma warn -8027 /* function not inlined. */
# endif
#endif
/* Whether kwsys namespace is "kwsys". */
#define @KWSYS_NAMESPACE@_NAME_IS_KWSYS @KWSYS_NAME_IS_KWSYS@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment