summaryrefslogtreecommitdiff
path: root/external/libetonyek/assert.patch
diff options
context:
space:
mode:
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);
- }