Browse Source

Support FF_DISABLE_DEPRECATION_WARNINGS with icc on Linux.

tags/n2.1
Carl Eugen Hoyos 12 years ago
parent
commit
87eae03aac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/internal.h

+ 1
- 1
libavutil/internal.h View File

@@ -64,7 +64,7 @@
#endif

#if HAVE_PRAGMA_DEPRECATED
# if defined(__ICL)
# if defined(__ICL) || defined (__INTEL_COMPILER)
# define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:1478))
# define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
# elif defined(_MSC_VER)


Loading…
Cancel
Save