Skip to content
Snippets Groups Projects
Commit ea402c70 authored by Tim-Philipp Müller's avatar Tim-Philipp Müller :tropical_fish:
Browse files

gstconfig.h: want deprecation warnings if GST_DISABLE_DEPRECATED is *set*

Fix inverted logic. If GST_DISABLE_DEPRECATED is undefined,
we don't want warnings about deprecated API, and if it's
defined we do want warnings.
parent c1066837
No related branches found
No related tags found
Loading
......@@ -159,7 +159,7 @@
* and thus have to be exposed in installed headers. But please
* do *not* use them in other projects. Instead, use G_DEPRECATED
* or define your own wrappers around it. */
#ifdef GST_DISABLE_DEPRECATED
#ifndef GST_DISABLE_DEPRECATED
#define GST_DEPRECATED GST_EXPORT
#define GST_DEPRECATED_FOR(f) GST_EXPORT
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment