[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:
Vedant Kumar 2016-08-24 06:44:57 +00:00
parent dfa0c53885
commit 81899af550
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}