summaryrefslogtreecommitdiff
path: root/dev-libs/libe/files/libe-0.11.0-strtoul.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/libe/files/libe-0.11.0-strtoul.patch')
-rw-r--r--dev-libs/libe/files/libe-0.11.0-strtoul.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/dev-libs/libe/files/libe-0.11.0-strtoul.patch b/dev-libs/libe/files/libe-0.11.0-strtoul.patch
deleted file mode 100644
index e993c593252f..000000000000
--- a/dev-libs/libe/files/libe-0.11.0-strtoul.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/e/convert.h
-+++ b/e/convert.h
-@@ -58,7 +58,7 @@
-
- errno = 0;
- #ifdef _MSC_VER
-- ret = _strtoui64(s.c_str(), &endptr, base);
-+ ret = strtoul(s.c_str(), &endptr, base);
- #else
- ret = strtoull(s.c_str(), &endptr, base);
- #endif