[cfe-commits] r104714 - /cfe/trunk/include/clang/AST/DeclCXX.h
Abramo Bagnara
abramo.bagnara at gmail.com
Wed May 26 11:17:40 PDT 2010
Author: abramo
Date: Wed May 26 13:17:40 2010
New Revision: 104714
URL: http://llvm.org/viewvc/llvm-project?rev=104714&view=rev
Log:
Fixed comment.
Modified:
cfe/trunk/include/clang/AST/DeclCXX.h
Modified: cfe/trunk/include/clang/AST/DeclCXX.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclCXX.h?rev=104714&r1=104713&r2=104714&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/DeclCXX.h (original)
+++ cfe/trunk/include/clang/AST/DeclCXX.h Wed May 26 13:17:40 2010
@@ -1075,9 +1075,9 @@
/// IsWritten - Whether or not the initializer is explicitly written
/// in the sources.
bool IsWritten : 1;
- /// SourceOrderOrNumArrayIndices - If IsImplicit is false, then this
+ /// SourceOrderOrNumArrayIndices - If IsWritten is true, then this
/// number keeps track of the textual order of this initializer in the
- /// original sources, counting from 0; otherwise, if IsImplicit is true,
+ /// original sources, counting from 0; otherwise, if IsWritten is false,
/// it stores the number of array index variables stored after this
/// object in memory.
unsigned SourceOrderOrNumArrayIndices : 14;
More information about the cfe-commits
mailing list