aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-06-19 17:52:20 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-06-19 23:07:31 -0700
commit31374871f2011b419a0aed09ad16201037230b15 (patch)
treef7572571aad52a2b6cc66d1e268efe17ff137a18 /toolsrc/include
parentc256ccf4526decec0422d8fc9d91ceb8fcf6160b (diff)
downloadvcpkg-31374871f2011b419a0aed09ad16201037230b15.tar.gz
vcpkg-31374871f2011b419a0aed09ad16201037230b15.zip
Rename VcpkgStringRange -> StringRange
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/base/stringrange.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/toolsrc/include/vcpkg/base/stringrange.h b/toolsrc/include/vcpkg/base/stringrange.h
index 94bd584af..6126ec48f 100644
--- a/toolsrc/include/vcpkg/base/stringrange.h
+++ b/toolsrc/include/vcpkg/base/stringrange.h
@@ -7,23 +7,23 @@
namespace vcpkg
{
- struct VcpkgStringRange
+ struct StringRange
{
- static std::vector<VcpkgStringRange> find_all_enclosed(const VcpkgStringRange& input,
- const std::string& left_delim,
- const std::string& right_delim);
+ static std::vector<StringRange> find_all_enclosed(const StringRange& input,
+ const std::string& left_delim,
+ const std::string& right_delim);
- static VcpkgStringRange find_exactly_one_enclosed(const VcpkgStringRange& input,
- const std::string& left_tag,
- const std::string& right_tag);
+ static StringRange find_exactly_one_enclosed(const StringRange& input,
+ const std::string& left_tag,
+ const std::string& right_tag);
- static Optional<VcpkgStringRange> find_at_most_one_enclosed(const VcpkgStringRange& input,
- const std::string& left_tag,
- const std::string& right_tag);
+ static Optional<StringRange> find_at_most_one_enclosed(const StringRange& input,
+ const std::string& left_tag,
+ const std::string& right_tag);
- VcpkgStringRange() = default;
- VcpkgStringRange(const std::string& s); // Implicit by design
- VcpkgStringRange(const std::string::const_iterator begin, const std::string::const_iterator end);
+ StringRange() = default;
+ StringRange(const std::string& s); // Implicit by design
+ StringRange(const std::string::const_iterator begin, const std::string::const_iterator end);
std::string::const_iterator begin;
std::string::const_iterator end;