summaryrefslogtreecommitdiff
path: root/external/libetonyek/assert.patch
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2015-05-19 15:56:04 +0200
committerDavid Tardon <dtardon@redhat.com>2015-05-19 16:00:59 +0200
commit3828a18f5f4134daea616121b6df5f06b463e3bb (patch)
tree45a64e83523026a9a85cdb5269c482c6294db745 /external/libetonyek/assert.patch
parentac210e9d544df8509e4f53036754d1046c08883d (diff)
upload libetonyek 0.1.2
Change-Id: I7b8382b5ca74f5a1d9535ef0715629f2537d9f7e
Diffstat (limited to 'external/libetonyek/assert.patch')
-rw-r--r--external/libetonyek/assert.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/external/libetonyek/assert.patch b/external/libetonyek/assert.patch
deleted file mode 100644
index 39d68db27a29..000000000000
--- a/external/libetonyek/assert.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/lib/EtonyekDocument.cpp
-+++ src/lib/EtonyekDocument.cpp
-@@ -7,6 +7,8 @@
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- */
-
-+#include <cassert>
-+
- #include <boost/scoped_ptr.hpp>
- #include <boost/shared_ptr.hpp>
- #include <boost/logic/tribool.hpp>
-@@ -179,7 +181,7 @@
- info.input->seek(0, RVNG_SEEK_SET);
- }
-
-- assert(!isGzipped);
-+ assert(bool(!isGzipped));
-
- return probeXMLImpl(info.input, probe, type, info);
- }