File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,23 +16,23 @@ namespace clang::mrdocs {
1616namespace {
1717constexpr
1818bool
19- isDigit (char c)
19+ isDigit (char const c)
2020{
2121 return c >= ' 0' && c <= ' 9' ;
2222}
2323
2424constexpr
2525bool
26- isIdentifierStart (char c)
26+ isIdentifierStart (char const c)
2727{
28- return c >= ' a' && c <= ' z' || c >= ' A' && c <= ' Z' || c == ' _' || c == ' ~' ;
28+ return ( c >= ' a' && c <= ' z' ) || ( c >= ' A' && c <= ' Z' ) || c == ' _' || c == ' ~' ;
2929}
3030
3131constexpr
3232bool
33- isIdentifierContinuation (char c)
33+ isIdentifierContinuation (char const c)
3434{
35- return c >= ' a' && c <= ' z' || c >= ' A' && c <= ' Z' || c == ' _' || isDigit (c);
35+ return ( c >= ' a' && c <= ' z' ) || ( c >= ' A' && c <= ' Z' ) || c == ' _' || isDigit (c);
3636}
3737
3838class RefParser
You can’t perform that action at this time.
0 commit comments