[Lldb-commits] [lldb] r273648 - Update LLDB for r273647

David Majnemer via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 23 21:39:23 PDT 2016


Author: majnemer
Date: Thu Jun 23 23:39:22 2016
New Revision: 273648

URL: http://llvm.org/viewvc/llvm-project?rev=273648&view=rev
Log:
Update LLDB for r273647

Modified:
    lldb/trunk/source/Symbol/ClangASTContext.cpp

Modified: lldb/trunk/source/Symbol/ClangASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/ClangASTContext.cpp?rev=273648&r1=273647&r2=273648&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp (original)
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp Thu Jun 23 23:39:22 2016
@@ -7748,8 +7748,7 @@ ClangASTContext::BuildIndirectFields (co
                                                                                                 clang::SourceLocation(),
                                                                                                 nested_field_decl->getIdentifier(),
                                                                                                 nested_field_decl->getType(),
-                                                                                                chain,
-                                                                                                2);
+                                                                                                {chain, 2});
                     
                     indirect_field->setImplicit();
                     
@@ -7779,8 +7778,7 @@ ClangASTContext::BuildIndirectFields (co
                                                                                                 clang::SourceLocation(),
                                                                                                 nested_indirect_field_decl->getIdentifier(),
                                                                                                 nested_indirect_field_decl->getType(),
-                                                                                                chain,
-                                                                                                nested_chain_size + 1);
+                                                                                                {chain, nested_chain_size + 1});
                     
                     indirect_field->setImplicit();
                     




More information about the lldb-commits mailing list