Style edit
This commit is contained in:
parent
f2c4b65549
commit
c3362f46b9
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user