aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-10-04 15:23:44 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-10-04 15:23:44 -0700
commit0050125443be8b5456e4a8d5ce9964e3db2703cd (patch)
tree4d2ee5c9f4723e7e35c87f2f0ccca19fa645f1f1 /toolsrc/include
parent8400da7f1d7143ff5969a5ae2fea4b0e76315216 (diff)
downloadvcpkg-0050125443be8b5456e4a8d5ce9964e3db2703cd.tar.gz
vcpkg-0050125443be8b5456e4a8d5ce9964e3db2703cd.zip
Rename function case_insensitive_find() to case_insensitive_ascii_find()
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Strings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Strings.h b/toolsrc/include/vcpkg_Strings.h
index b7eabf234..2aa99afe0 100644
--- a/toolsrc/include/vcpkg_Strings.h
+++ b/toolsrc/include/vcpkg_Strings.h
@@ -59,7 +59,7 @@ namespace vcpkg {namespace Strings
std::string utf16_to_utf8(const std::wstring& w);
- std::string::const_iterator case_insensitive_find(const std::string& s, const std::string& pattern);
+ std::string::const_iterator case_insensitive_ascii_find(const std::string& s, const std::string& pattern);
std::string ascii_to_lowercase(const std::string& input);
}}