Checking that Parser initially is case-sensitive.

This commit is contained in:
2016-06-22 09:14:01 +01:00
parent d9578b6f1c
commit 73c9d6c1f3
3 changed files with 10 additions and 0 deletions

View File

@@ -166,6 +166,13 @@ void Parser::setCaseSensitive(bool isCaseSensitive)
////////////////////////////////////////////////////////////////////////////////////////////////////
bool Parser::isCaseSensitive() const noexcept
{
return m_isCaseSensitive;
}
////////////////////////////////////////////////////////////////////////////////////////////////////
char Parser::currentCharacter() const
{
if (m_isCaseSensitive)