File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
clang/include/clang/Analysis Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ class CallGraph : public RecursiveASTVisitor<CallGraph> {
55
55
// / A setting to determine whether this should include calls that are done in
56
56
// / a constant expression's context. This DOES require the ASTContext object
57
57
// / for constexpr-if, so setting it requires a valid ASTContext.
58
- bool shouldSkipConstexpr = false ;
58
+ bool ShouldSkipConstexpr = false ;
59
59
ASTContext *Ctx;
60
60
61
61
public:
@@ -145,10 +145,10 @@ class CallGraph : public RecursiveASTVisitor<CallGraph> {
145
145
bool shouldWalkTypesOfTypeLocs () const { return false ; }
146
146
bool shouldVisitTemplateInstantiations () const { return true ; }
147
147
bool shouldVisitImplicitCode () const { return true ; }
148
- bool shouldSkipConstantExpressions () const { return shouldSkipConstexpr ; }
148
+ bool shouldSkipConstantExpressions () const { return ShouldSkipConstexpr ; }
149
149
void setSkipConstantExpressions (ASTContext &Context) {
150
150
Ctx = &Context;
151
- shouldSkipConstexpr = true ;
151
+ ShouldSkipConstexpr = true ;
152
152
}
153
153
ASTContext &getASTContext () {
154
154
assert (Ctx);
You can’t perform that action at this time.
0 commit comments