[PATCH] D23828: Make InitListExpr::isExplicit const
Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 23 23:53:03 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL279613: [AST] Make InitListExpr::isExplicit const (NFC) (authored by vedantk).
Changed prior to commit:
https://reviews.llvm.org/D23828?vs=69083&id=69084#toc
Repository:
rL LLVM
https://reviews.llvm.org/D23828
Files:
cfe/trunk/include/clang/AST/Expr.h
Index: cfe/trunk/include/clang/AST/Expr.h
===================================================================
--- cfe/trunk/include/clang/AST/Expr.h
+++ cfe/trunk/include/clang/AST/Expr.h
@@ -3862,7 +3862,7 @@
// 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();
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23828.69084.patch
Type: text/x-patch
Size: 487 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160824/b0b45f8c/attachment.bin>
More information about the cfe-commits
mailing list