From fafc52c7869a92278538c20f8a24e48b047c7cdb Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 17 Oct 2012 23:55:38 +0000 Subject: [PATCH] Update comment to match DR1502. llvm-svn: 166158 --- clang/lib/Sema/SemaInit.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clang/lib/Sema/SemaInit.cpp b/clang/lib/Sema/SemaInit.cpp index f7a173fcc08d..7f3d7ab3599e 100644 --- a/clang/lib/Sema/SemaInit.cpp +++ b/clang/lib/Sema/SemaInit.cpp @@ -3611,8 +3611,7 @@ static void TryValueInitialization(Sema &S, // user-provided or deleted default constructor, then the object is // zero-initialized and, if T has a non-trivial default constructor, // default-initialized; - // FIXME: The 'non-union' here is a defect (not yet assigned an issue - // number). Update the quotation when the defect is resolved. + // The 'non-union' here was removed by DR1502. if (NeedZeroInitialization) Sequence.AddZeroInitializationStep(Entity.getType());