forked from OSchip/llvm-project
[AST] Make InitListExpr::isExplicit const (NFC)
Patch by Alexander Shaposhnikov! Differential Revision: https://reviews.llvm.org/D23828 llvm-svn: 279613
This commit is contained in:
parent
dfa0c53885
commit
81899af550
|
@ -3862,7 +3862,7 @@ public:
|
|||
|
||||
// Explicit InitListExpr's originate from source code (and have valid source
|
||||
// locations). Implicit InitListExpr's are created by the semantic analyzer.
|
||||
bool isExplicit() {
|
||||
bool isExplicit() const {
|
||||
return LBraceLoc.isValid() && RBraceLoc.isValid();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue