summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2015-10-30 14:40:35 +1100
committerMatthew Waters <matthew@centricular.com>2015-10-30 14:40:35 +1100
commitd07c59170a4d3a7d41dcef1e299f31813079348d (patch)
tree6b5df7de7164519ac1ce4ee59bf4f8fb1f1b196c
parent8106a0931ad1c7e83f342c9593562e3568f2a9ec (diff)
downloadgstreamer-plugins-bad-d07c59170a4d3a7d41dcef1e299f31813079348d.tar.gz
glslstage: remove typedefs from the header
They are already defined in the forward decleration header and defining them more than once will give an error with OSX's clang about typedef redefinition being a C11 feature.
-rw-r--r--gst-libs/gst/gl/gstglslstage.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/gst-libs/gst/gl/gstglslstage.h b/gst-libs/gst/gl/gstglslstage.h
index be4ef3242..69fbf2e41 100644
--- a/gst-libs/gst/gl/gstglslstage.h
+++ b/gst-libs/gst/gl/gstglslstage.h
@@ -25,10 +25,6 @@
G_BEGIN_DECLS
-typedef struct _GstGLSLStage GstGLSLStage;
-typedef struct _GstGLSLStageClass GstGLSLStageClass;
-typedef struct _GstGLSLStagePrivate GstGLSLStagePrivate;
-
#define GST_TYPE_GLSL_STAGE (gst_glsl_stage_get_type())
#define GST_GLSL_STAGE(o) (G_TYPE_CHECK_INSTANCE_CAST((o), GST_TYPE_GLSL_STAGE, GstGLSLStage))
#define GST_GLSL_STAGE_CLASS(k) (G_TYPE_CHECK_CLASS((k), GST_TYPE_GLSL_STAGE, GstGLSLStageClass))