Merge branch 'master' into add_noexcept
This commit is contained in:
commit
ebe591ffeb
@ -76,6 +76,10 @@
|
||||
# pragma diag_suppress=237 // controlling expression is constant
|
||||
#endif
|
||||
|
||||
#ifdef __TI_COMPILER_VERSION__
|
||||
# pragma diag_suppress 179 // function was declared but never referenced
|
||||
#endif
|
||||
|
||||
// Inlining controls
|
||||
#if defined(_MSC_VER) && _MSC_VER >= 1300
|
||||
# define PUGI__NO_INLINE __declspec(noinline)
|
||||
|
||||
@ -99,6 +99,8 @@
|
||||
#ifndef PUGIXML_OVERRIDE
|
||||
# if __cplusplus >= 201103
|
||||
# define PUGIXML_OVERRIDE override
|
||||
# elif defined(_MSC_VER) && _MSC_VER >= 1700
|
||||
# define PUGIXML_OVERRIDE override
|
||||
# else
|
||||
# define PUGIXML_OVERRIDE
|
||||
# endif
|
||||
|
||||
Loading…
Reference in New Issue
Block a user