From 928694ff233bd4383f30b05bf6d2d37562b77a9a Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 14 Aug 2011 02:41:24 +0300 Subject: [PATCH] Use string::size_type rather than unsigned to store string offsets --- source/strings/regmatch.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/source/strings/regmatch.h b/source/strings/regmatch.h index 325a9b2..c5116cd 100644 --- a/source/strings/regmatch.h +++ b/source/strings/regmatch.h @@ -24,11 +24,13 @@ public: */ struct Group { - bool match; //< Whether or not this group matched - unsigned begin; //< First offset of the match - unsigned end; //< One-past-last offset - unsigned length; //< Length of the match (end-begin) - std::string str; //< The part of the string that matched + typedef std::string::size_type size_type; + + bool match; //< Whether or not this group matched + size_type begin; //< First offset of the match + size_type end; //< One-past-last offset + size_type length; //< Length of the match (end-begin) + std::string str; //< The part of the string that matched Group(): match(false) { } operator bool() const { return match; } -- 2.43.0