summaryrefslogtreecommitdiff
path: root/science/gnudatalanguage/files/patch-src__str.cpp
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2015-04-22 20:16:04 +0000
committerThierry Thomas <thierry@FreeBSD.org>2015-04-22 20:16:04 +0000
commit779c36f5c4677e26ad544b72a061151c7019f23a (patch)
tree3e2945667463e62a9b4af6b4c1f68e4cca2f9215 /science/gnudatalanguage/files/patch-src__str.cpp
parent- Remove LICENSE (diff)
- Upgrade math/plplot to 5.11.0
Announcement at <https://sourceforge.net/p/plplot/plplot/ci/plplot-5.11.0/tree/README.release> - Take maintainership - Chase dependencies. PR: ports/199539 Submitted by: Ben Woods <woodsb02 (at) gmail.com> Approved by: marino (for plplot-ada), /me (for gnudatalanguage)
Diffstat (limited to 'science/gnudatalanguage/files/patch-src__str.cpp')
-rw-r--r--science/gnudatalanguage/files/patch-src__str.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/science/gnudatalanguage/files/patch-src__str.cpp b/science/gnudatalanguage/files/patch-src__str.cpp
index e5082a6db1a3..17337dfafc77 100644
--- a/science/gnudatalanguage/files/patch-src__str.cpp
+++ b/science/gnudatalanguage/files/patch-src__str.cpp
@@ -1,6 +1,6 @@
---- ./src/str.cpp.orig 2014-04-08 16:53:53.954118000 +0200
-+++ ./src/str.cpp 2014-04-08 16:58:59.524163473 +0200
-@@ -180,7 +180,7 @@
+--- src/str.cpp.orig 2015-04-22 19:37:22 UTC
++++ src/str.cpp
+@@ -178,7 +178,7 @@ string StrUpCase(const string& s)
ArrayGuard<char> guard( r);
r[len]=0;
for(unsigned i=0;i<len;i++)
@@ -9,7 +9,7 @@
return string(r);
}
void StrUpCaseInplace( string& s)
-@@ -191,7 +191,7 @@
+@@ -189,7 +189,7 @@ void StrUpCaseInplace( string& s)
// ArrayGuard<char> guard( r);
// r[len]=0;
for(unsigned i=0;i<len;i++)
@@ -18,7 +18,7 @@
// return string(r);
}
-@@ -203,7 +203,7 @@
+@@ -201,7 +201,7 @@ string StrLowCase(const string& s)
ArrayGuard<char> guard( r);
r[len]=0;
for(unsigned i=0;i<len;i++)
@@ -27,7 +27,7 @@
return string(r);
}
void StrLowCaseInplace(string& s)
-@@ -211,7 +211,7 @@
+@@ -209,7 +209,7 @@ void StrLowCaseInplace(string& s)
unsigned len=s.length();
// char const *sCStr=s.c_str();
for(unsigned i=0;i<len;i++)