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 {
16
16
namespace {
17
17
constexpr
18
18
bool
19
- isDigit (char c)
19
+ isDigit (char const c)
20
20
{
21
21
return c >= ' 0' && c <= ' 9' ;
22
22
}
23
23
24
24
constexpr
25
25
bool
26
- isIdentifierStart (char c)
26
+ isIdentifierStart (char const c)
27
27
{
28
- return c >= ' a' && c <= ' z' || c >= ' A' && c <= ' Z' || c == ' _' || c == ' ~' ;
28
+ return ( c >= ' a' && c <= ' z' ) || ( c >= ' A' && c <= ' Z' ) || c == ' _' || c == ' ~' ;
29
29
}
30
30
31
31
constexpr
32
32
bool
33
- isIdentifierContinuation (char c)
33
+ isIdentifierContinuation (char const c)
34
34
{
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);
36
36
}
37
37
38
38
class RefParser
You can’t perform that action at this time.
0 commit comments