Fix Texas Instruments compiler warning
Texas Instruments compiler produces this warning for unused template member functions: "pugixml.cpp", line 253: warning #179-D: function "pugi::impl::<unnamed>::auto_deleter<T>::release [with T=pugi::impl::<unnamed>::xml_stream_chunk<char>]" was declared but never referenced As far as I can tell, this is a compiler issue - these functions should not be instantiated in the first place; while it's possible to rework the code to work around this, the changes would be fragile. It seems best to just disable this warning - we've seen something similar on SNC (which appears to use the same frontend!..). Fixes #182.
This commit is contained in:
parent
2ec3579f29
commit
b127cfb18e
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue