Fix compiler warning in snow leopard

This commit is contained in:
Jason Turner 2012-06-01 15:07:53 -06:00
parent 254d176266
commit 6c53e08e9b

View File

@ -1483,10 +1483,10 @@ namespace chaiscript
while (Eol()) {}
while (Case()) {
while (Eol());
while (Eol()) { } // eat
}
while (Eol());
while (Eol()) { } // eat
if (!Char('}')) {
throw exception::eval_error("Incomplete block", File_Position(m_line, m_col), *m_filename);