chore(frontends/lean): fix style

This commit is contained in:
Leonardo de Moura 2015-09-30 16:52:09 -07:00
parent 6153ccd253
commit c9af007994
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura Author: Leonardo de Moura
*/ */
#pragma once #pragma once
#include <string>
#include <utility> #include <utility>
#include <limits> #include <limits>
#include "util/pair.h" #include "util/pair.h"

View file

@ -160,7 +160,7 @@ auto scanner::read_quoted_symbol() -> token_kind {
} else if (c != '\"' && c != '\n' && c != '\t') { } else if (c != '\"' && c != '\n' && c != '\t') {
m_buffer += c; m_buffer += c;
} else { } else {
// TODO: intra-token space // TODO(Leo): intra-token space
throw_exception("invalid quoted symbol, invalid character"); throw_exception("invalid quoted symbol, invalid character");
} }
} }