blob: e2d6160a624d17e8581312213da3b861d3de1022 (
plain) (
tree)
|
|
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
|