COMP: Disable useless warnings.
This commit is contained in:
parent
943108cadf
commit
05bd270109
|
@ -14,6 +14,7 @@
|
||||||
#ifndef @KWSYS_NAMESPACE@_Configure_h
|
#ifndef @KWSYS_NAMESPACE@_Configure_h
|
||||||
#define @KWSYS_NAMESPACE@_Configure_h
|
#define @KWSYS_NAMESPACE@_Configure_h
|
||||||
|
|
||||||
|
/* Setup the export macro. */
|
||||||
#if defined(_WIN32) && @KWSYS_BUILD_SHARED@
|
#if defined(_WIN32) && @KWSYS_BUILD_SHARED@
|
||||||
# if defined(@KWSYS_NAMESPACE@_EXPORTS)
|
# if defined(@KWSYS_NAMESPACE@_EXPORTS)
|
||||||
# define @KWSYS_NAMESPACE@_EXPORT __declspec(dllexport)
|
# define @KWSYS_NAMESPACE@_EXPORT __declspec(dllexport)
|
||||||
|
@ -24,4 +25,11 @@
|
||||||
# define @KWSYS_NAMESPACE@_EXPORT
|
# define @KWSYS_NAMESPACE@_EXPORT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Disable useless warnings. */
|
||||||
|
#if !defined(@KWSYS_NAMESPACE@_NO_WARNING_DISABLE)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# pragma warning (disable: 4514) /* Unreferenced inline function removed. */
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue