Update comment to refer to core issue number.
llvm-svn: 186848
diff --git a/clang/lib/Sema/SemaDeclCXX.cpp b/clang/lib/Sema/SemaDeclCXX.cpp
index dd46dfb..b6f5fe9 100644
--- a/clang/lib/Sema/SemaDeclCXX.cpp
+++ b/clang/lib/Sema/SemaDeclCXX.cpp
@@ -5076,10 +5076,8 @@
SMI.shouldDeleteForBase(BI))
return true;
- // Defect report (no number yet): do not consider virtual bases of
- // constructors of abstract classes, since we are not going to construct
- // them. This is an extension of DR257 into the C++11 behavior for special
- // members.
+ // Per DR1611, do not consider virtual bases of constructors of abstract
+ // classes, since we are not going to construct them.
if (!RD->isAbstract() || !SMI.IsConstructor) {
for (CXXRecordDecl::base_class_iterator BI = RD->vbases_begin(),
BE = RD->vbases_end();