Skip to content

Commit 3338f4e

Browse files
committed
Remove unused variable found by GCC warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@289698 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent ac507be commit 3338f4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Serialization/ASTReader.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8185,7 +8185,7 @@ ASTReader::ReadCXXCtorInitializers(ModuleFile &F, const RecordData &Record,
81858185
CXXCtorInitializer(Context, IndirectMember, MemberOrEllipsisLoc,
81868186
LParenLoc, Init, RParenLoc);
81878187

8188-
if (bool IsWritten = Record[Idx++]) {
8188+
if (/*IsWritten*/Record[Idx++]) {
81898189
unsigned SourceOrder = Record[Idx++];
81908190
BOMInit->setSourceOrder(SourceOrder);
81918191
}

0 commit comments

Comments
 (0)