From c19c120531a29fe06114f78cf4ee5ec28bf8a7f7 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Tue, 10 Oct 2017 16:04:34 +0000 Subject: [PATCH] vdrift: remove glibc-2.26 assert workaround --- .../vdrift/patches/glibc-2.26-assert.patch | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 srcpkgs/vdrift/patches/glibc-2.26-assert.patch diff --git a/srcpkgs/vdrift/patches/glibc-2.26-assert.patch b/srcpkgs/vdrift/patches/glibc-2.26-assert.patch deleted file mode 100644 index cbaed2c2736..00000000000 --- a/srcpkgs/vdrift/patches/glibc-2.26-assert.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- src/bezier.cpp.orig 2014-08-11 18:08:01.000000000 +0000 -+++ src/bezier.cpp 2017-09-22 19:42:14.914232067 +0000 -@@ -463,7 +463,7 @@ - - void Bezier::ReadFrom(std::istream &openfile) - { -- assert(openfile); -+ assert(static_cast(openfile)); - - for (int x = 0; x < 4; x++) - { -@@ -480,7 +480,7 @@ - - void Bezier::ReadFromYZX(std::istream &openfile) - { -- assert(openfile); -+ assert(static_cast(openfile)); - for (int x = 0; x < 4; x++) - { - for (int y = 0; y < 4; y++) -@@ -494,7 +494,7 @@ - - void Bezier::WriteTo(std::ostream &openfile) const - { -- assert(openfile); -+ assert(static_cast(openfile)); - - for (int x = 0; x < 4; x++) - { ---- src/roadstrip.cpp.orig 2014-08-01 06:18:06.000000000 +0000 -+++ src/roadstrip.cpp 2017-09-22 19:44:11.794238097 +0000 -@@ -31,7 +31,7 @@ - bool reverse, - std::ostream & error_output) - { -- assert(openfile); -+ assert(static_cast(openfile)); - - int num = 0; - openfile >> num;