Silence a warning.

git-svn-id: http://root.cern.ch/svn/root/trunk@47654 27541ba8-7e3a-0410-8455-c3a389f83636
This commit is contained in:
Vassil Vassilev 2012-11-27 15:56:52 +00:00
parent 63ea4e20db
commit b497a0b37a

View File

@ -26,13 +26,14 @@ namespace cling {
// If there is " or ' we don't need to look for balancing until we
// enounter matching " or '
if (kind >= (int)tok::quote && kind <= (int)tok::apostrophe)
if (kind >= (int)tok::quote && kind <= (int)tok::apostrophe) {
if (m_ParenStack.empty())
m_ParenStack.push(kind);
else if (m_ParenStack.top() == kind)
m_ParenStack.pop();
else
continue;
}
// In case when we need closing brace.
if (kind >= (int)tok::l_square && kind <= (int)tok::r_brace) {