diff options
Diffstat (limited to '')
-rw-r--r-- | src/messageIdSequence.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/messageIdSequence.cpp b/src/messageIdSequence.cpp index bfd0c30f..23b12773 100644 --- a/src/messageIdSequence.cpp +++ b/src/messageIdSequence.cpp @@ -85,12 +85,12 @@ const std::vector <shared_ptr <component> > messageIdSequence::getChildComponent void messageIdSequence::parseImpl - (const parsingContext& ctx, const string& buffer, const string::size_type position, - const string::size_type end, string::size_type* newPosition) + (const parsingContext& ctx, const string& buffer, const size_t position, + const size_t end, size_t* newPosition) { removeAllMessageIds(); - string::size_type pos = position; + size_t pos = position; while (pos < end) { @@ -109,9 +109,9 @@ void messageIdSequence::parseImpl void messageIdSequence::generateImpl (const generationContext& ctx, utility::outputStream& os, - const string::size_type curLinePos, string::size_type* newLinePos) const + const size_t curLinePos, size_t* newLinePos) const { - string::size_type pos = curLinePos; + size_t pos = curLinePos; if (!m_list.empty()) { |