auto_ptr deprecation warning suppression

This commit is contained in:
William S Fulton 2014-01-03 08:27:41 +00:00
commit fc3098ea55

View file

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