summaryrefslogtreecommitdiff
path: root/sci-electronics/vbs/files/vbs-1.4.0-const_cast.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sci-electronics/vbs/files/vbs-1.4.0-const_cast.patch')
-rw-r--r--sci-electronics/vbs/files/vbs-1.4.0-const_cast.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/sci-electronics/vbs/files/vbs-1.4.0-const_cast.patch b/sci-electronics/vbs/files/vbs-1.4.0-const_cast.patch
deleted file mode 100644
index 796aba52bb76..000000000000
--- a/sci-electronics/vbs/files/vbs-1.4.0-const_cast.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/common/scp_tab.cc
-+++ b/common/scp_tab.cc
-@@ -148,7 +148,7 @@
- nm.replace(0,top.length()+1,"");
- const char * n = nm.c_str();
- size_t full, sub,diff;
-- char * last_dot = strrchr(n,'.');
-+ char * last_dot = const_cast<char*>(strrchr(n,'.'));
- char * ret = 0;
- if (last_dot != 0)
- {