Style edit

This commit is contained in:
Jamboree 2015-06-06 02:09:10 +08:00
parent f2c4b65549
commit c3362f46b9
2 changed files with 5 additions and 6 deletions

View File

@ -266,8 +266,7 @@ int parse_nonnegative_int(const Char *&s) {
} }
template <typename Char> template <typename Char>
inline bool is_name_start(Char c) inline bool is_name_start(Char c) {
{
return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || '_' == c; return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z') || '_' == c;
} }