summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2016-11-29 10:58:13 +0100
committerAlexis Ballier <aballier@gentoo.org>2016-11-29 13:18:39 +0100
commit6665d96340a282a5757bc092d0d2a5df46e4e87e (patch)
treee533b7e6c60e2fe1c528253fd5ef0e12ab43b180 /sci-electronics/gazebo/files/tinyxml2.patch
parentnet-libs/ignition-transport: add ignition-transport2 in a new slot (diff)
downloadgentoo-6665d96340a282a5757bc092d0d2a5df46e4e87e.tar.gz
gentoo-6665d96340a282a5757bc092d0d2a5df46e4e87e.tar.bz2
gentoo-6665d96340a282a5757bc092d0d2a5df46e4e87e.zip
sci-electronics/gazebo: remove old
Package-Manager: portage-2.3.2
Diffstat (limited to 'sci-electronics/gazebo/files/tinyxml2.patch')
-rw-r--r--sci-electronics/gazebo/files/tinyxml2.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/sci-electronics/gazebo/files/tinyxml2.patch b/sci-electronics/gazebo/files/tinyxml2.patch
deleted file mode 100644
index b829201f4905..000000000000
--- a/sci-electronics/gazebo/files/tinyxml2.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: gazebo-7.3.1/gazebo/util/LogPlay.cc
-===================================================================
---- gazebo-7.3.1.orig/gazebo/util/LogPlay.cc
-+++ gazebo-7.3.1/gazebo/util/LogPlay.cc
-@@ -72,7 +72,7 @@ void LogPlay::Open(const std::string &_l
-
- // Flag use to indicate if a parser failure has occurred
- bool xmlParserFail = this->dataPtr->xmlDoc.LoadFile(_logFile.c_str()) !=
-- tinyxml2::XML_NO_ERROR;
-+ tinyxml2::XML_SUCCESS;
-
- // Parse the log file
- if (xmlParserFail)
-@@ -105,7 +105,7 @@ void LogPlay::Open(const std::string &_l
-
- // Retry loading the log file.
- xmlParserFail = this->dataPtr->xmlDoc.LoadFile(_logFile.c_str()) !=
-- tinyxml2::XML_NO_ERROR;
-+ tinyxml2::XML_SUCCESS;
- }
- }
- }