Made the section skipping function a proper function.
This commit is contained in:
parent
9360f4295a
commit
ee9626e4d2
@ -16,27 +16,26 @@ namespace pddl
|
|||||||
//
|
//
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
const auto skipSection =
|
inline void skipSection(utils::Parser &parser)
|
||||||
[](utils::Parser &parser)
|
{
|
||||||
|
size_t openParentheses = 1;
|
||||||
|
|
||||||
|
while (true)
|
||||||
{
|
{
|
||||||
size_t openParentheses = 1;
|
const auto character = parser.currentCharacter();
|
||||||
|
parser.advance();
|
||||||
|
|
||||||
while (true)
|
if (character == '(')
|
||||||
|
openParentheses++;
|
||||||
|
else if (character == ')')
|
||||||
{
|
{
|
||||||
const auto character = parser.currentCharacter();
|
openParentheses--;
|
||||||
parser.advance();
|
|
||||||
|
|
||||||
if (character == '(')
|
if (openParentheses == 0)
|
||||||
openParentheses++;
|
return;
|
||||||
else if (character == ')')
|
|
||||||
{
|
|
||||||
openParentheses--;
|
|
||||||
|
|
||||||
if (openParentheses == 0)
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user