mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
Whitespace
This commit is contained in:
parent
7b97688302
commit
054e139c0d
|
@ -23,7 +23,7 @@ namespace smt2 {
|
||||||
|
|
||||||
void scanner::next() {
|
void scanner::next() {
|
||||||
if (m_cache_input)
|
if (m_cache_input)
|
||||||
m_cache.push_back(m_curr);
|
m_cache.push_back(m_curr);
|
||||||
SASSERT(!m_at_eof);
|
SASSERT(!m_at_eof);
|
||||||
if (m_interactive) {
|
if (m_interactive) {
|
||||||
m_curr = m_stream.get();
|
m_curr = m_stream.get();
|
||||||
|
@ -293,11 +293,11 @@ namespace smt2 {
|
||||||
}
|
}
|
||||||
|
|
||||||
scanner::token scanner::scan() {
|
scanner::token scanner::scan() {
|
||||||
while (true) {
|
while (true) {
|
||||||
signed char c = curr();
|
signed char c = curr();
|
||||||
m_pos = m_spos;
|
m_pos = m_spos;
|
||||||
|
|
||||||
if (m_at_eof)
|
if (m_at_eof)
|
||||||
return EOF_TOKEN;
|
return EOF_TOKEN;
|
||||||
|
|
||||||
switch (m_normalized[(unsigned char) c]) {
|
switch (m_normalized[(unsigned char) c]) {
|
||||||
|
|
Loading…
Reference in a new issue