compiler warning suppression correction in testcase

This commit is contained in:
William S Fulton 2015-02-06 18:21:05 +00:00
commit 9402f14393

View file

@ -1,7 +1,7 @@
%module li_std_auto_ptr
%{
#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)
#if defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wdeprecated-declarations" // auto_ptr deprecation
#endif
%}