diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-10-17 23:55:38 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-10-17 23:55:38 +0000 |
commit | bd2f1f0dd5ea823e929d334130eb214f802489a5 (patch) | |
tree | 9d0275bf9b3451fb9655ebc6d8280a41a215cd07 /lib/Sema/SemaInit.cpp | |
parent | 9be36ab27b874b404099650e0c29bc92f3c7662d (diff) |
Update comment to match DR1502.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166158 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaInit.cpp')
-rw-r--r-- | lib/Sema/SemaInit.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Sema/SemaInit.cpp b/lib/Sema/SemaInit.cpp index f7a173fcc0..7f3d7ab359 100644 --- a/lib/Sema/SemaInit.cpp +++ b/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()); |