summaryrefslogtreecommitdiff
path: root/www-client/chromium/files/chromium-95-text_fragments_utils-include.patch
diff options
context:
space:
mode:
Diffstat (limited to 'www-client/chromium/files/chromium-95-text_fragments_utils-include.patch')
-rw-r--r--www-client/chromium/files/chromium-95-text_fragments_utils-include.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/www-client/chromium/files/chromium-95-text_fragments_utils-include.patch b/www-client/chromium/files/chromium-95-text_fragments_utils-include.patch
deleted file mode 100644
index e2d6160..0000000
--- a/www-client/chromium/files/chromium-95-text_fragments_utils-include.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From f48b39ee129132337b93e905c8f304c65766742a Mon Sep 17 00:00:00 2001
-From: Stephan Hartmann <stha09@googlemail.com>
-Date: Tue, 31 Aug 2021 12:22:35 +0000
-Subject: [PATCH] IWYU: add string.h for strlen in text_fragments_utils
-
-Remove namespace std from strlen to avoid including cstring as well.
----
- .../shared_highlighting/core/common/text_fragments_utils.cc | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/components/shared_highlighting/core/common/text_fragments_utils.cc b/components/shared_highlighting/core/common/text_fragments_utils.cc
-index 9f39ce6..389c09c 100644
---- a/components/shared_highlighting/core/common/text_fragments_utils.cc
-+++ b/components/shared_highlighting/core/common/text_fragments_utils.cc
-@@ -4,6 +4,8 @@
-
- #include "components/shared_highlighting/core/common/text_fragments_utils.h"
-
-+#include <string.h>
-+
- #include <sstream>
-
- #include "base/json/json_writer.h"
-@@ -54,8 +56,8 @@ bool SplitUrlTextFragmentDirective(const std::string& full_url,
-
- // We only want to keep what's after the delimiter.
- *highlight_directive =
-- full_url.substr(pos + std::strlen(kFragmentsUrlDelimiter) +
-- std::strlen(kFragmentParameterName));
-+ full_url.substr(pos + strlen(kFragmentsUrlDelimiter) +
-+ strlen(kFragmentParameterName));
- return true;
- }
-
---
-2.31.1
-