dev-cpp/gstreamermm: remove old

Package-Manager: Portage-2.3.16, Repoman-2.3.6
This commit is contained in:
Mart Raudsepp
2017-12-16 20:03:52 +02:00
parent 210f2d7822
commit ec7eea0762
3 changed files with 0 additions and 86 deletions

View File

@@ -1,23 +0,0 @@
From c5006faf05bc4b46767d30f42bcb6157836b7540 Mon Sep 17 00:00:00 2001
From: Marcin Kolny <marcin.kolny@gmail.com>
Date: Sat, 17 Sep 2016 22:49:34 +0200
Subject: Fix warnings
---
gstreamer/gstreamermm/check.cc | 2 +-
leio: Trimmed patch down to only ThrowIf that makes compilation fail with newer gcc, not just warn
diff --git a/gstreamer/gstreamermm/check.cc b/gstreamer/gstreamermm/check.cc
index d620435..a0d323d 100644
--- a/gstreamer/gstreamermm/check.cc
+++ b/gstreamer/gstreamermm/check.cc
@@ -54,7 +54,7 @@ RefPtr<Element> Check::_Check::setup_element (const ustring& factory)
element = ElementFactory::create_element (factory, factory);
- ThrowIf (element, "Could not create a '" + factory + "' element");
+ ThrowIf (!!element, "Could not create a '" + factory + "' element");
CheckRefCount (element->gobj(), factory, 1);
return element;