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

COMP: Silence useless Borland inlining warning

KWSys tries not to force anything on source files that include its
headers, but Borland warning 8027 leaves us no choice when we want to
have inline function definitions.  This commit disables the warning for
the RegularExpression header and any file that includes it.
parent 9350c584
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,12 @@
# define kwsys_stl @KWSYS_NAMESPACE@_stl
#endif
/* Disable useless Borland warnings. KWSys tries not to force things
on its includers, but there is no choice here. */
#if defined(__BORLANDC__)
# pragma warn -8027 /* function not inlined. */
#endif
namespace @KWSYS_NAMESPACE@
{
......
......@@ -4,7 +4,7 @@
SET(KWSYS_DATE_STAMP_YEAR 2009)
# KWSys version date month component. Format is MM.
SET(KWSYS_DATE_STAMP_MONTH 08)
SET(KWSYS_DATE_STAMP_MONTH 09)
# KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 31)
SET(KWSYS_DATE_STAMP_DAY 03)
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