diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-04 09:39:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-04 10:11:12 +0100 |
commit | 00af78ed9059cac0de235e3bdcf5ee8725258d1e (patch) | |
tree | 7a10e49c23ba0560677fa897b2fb9fd41de14f8d /avmedia/source | |
parent | a1a24137b3d39e8f19765e4041f07372cecddd2c (diff) |
-Werror,-Wunused-macros
<https://msdn.microsoft.com/en-us/library/windows/desktop/ms647466%28v=vs.85%29.aspx>
"About Strsafe.h":
When you include Strsafe.h in your file, the older functions replaced by the
Strsafe.h functions will be deprecated. Attempts to use these older functions
will result in a compiler error telling you to use the newer functions. If you
want to override this behavior, include the following statement before
including Strsafe.h.
#define STRSAFE_NO_DEPRECATE
Appears to no (longer?) be relevant here, as reported by clang-cl.
Change-Id: I94a576b71a2a34edd6009059fc5047ba59ec0f12
Diffstat (limited to 'avmedia/source')
-rw-r--r-- | avmedia/source/win/window.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/avmedia/source/win/window.cxx b/avmedia/source/win/window.cxx index a53a87c5f372..4c13f07d265f 100644 --- a/avmedia/source/win/window.cxx +++ b/avmedia/source/win/window.cxx @@ -24,7 +24,6 @@ #include <objbase.h> #include <strmif.h> #include <control.h> -#define STRSAFE_NO_DEPRECATE #include <dshow.h> #if defined _MSC_VER #pragma warning(pop) |