File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,8 @@ void StringConstructorCheck::check(const MatchFinder::MatchResult &Result) {
138
138
}
139
139
} else if (const auto *Ptr = Result.Nodes .getNodeAs <Expr>(" from-ptr" )) {
140
140
Expr::EvalResult ConstPtr;
141
- if (Ptr ->EvaluateAsRValue (ConstPtr, Ctx) &&
141
+ if (!Ptr ->isInstantiationDependent () &&
142
+ Ptr ->EvaluateAsRValue (ConstPtr, Ctx) &&
142
143
((ConstPtr.Val .isInt () && ConstPtr.Val .getInt ().isNullValue ()) ||
143
144
(ConstPtr.Val .isLValue () && ConstPtr.Val .isNullPointer ()))) {
144
145
diag (Loc, " constructing string from nullptr is undefined behaviour" );
Original file line number Diff line number Diff line change @@ -65,3 +65,11 @@ void Valid() {
65
65
std::string s2 (" test" , 3 );
66
66
std::string s3 (" test" );
67
67
}
68
+
69
+ namespace instantiation_dependent_exprs {
70
+ template <typename T>
71
+ struct S {
72
+ bool x;
73
+ std::string f () { return x ? " a" : " b" ; }
74
+ };
75
+ }
You can’t perform that action at this time.
0 commit comments