[PATCH] D11928: Small fixup
    Reid Kleckner via cfe-commits 
    cfe-commits at lists.llvm.org
       
    Tue Aug 11 15:28:10 PDT 2015
    
    
  
rnk added inline comments.
================
Comment at: include/clang/AST/VTableBuilder.h:54
@@ -53,3 +53,3 @@
 
-  VTableComponent() { }
+  VTableComponent() = default;
 
----------------
Is this ctor used? It leaves Value uninitialized. Maybe we should delete it to ensure that it isn't called, or use a default member initializer for Value below.
http://reviews.llvm.org/D11928
    
    
More information about the cfe-commits
mailing list