aokblast updated this revision to Diff 554724.
aokblast added a comment.

This change fix the indentation for the ObjectFileELF.cpp


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D159076/new/

https://reviews.llvm.org/D159076

Files:
  lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp


Index: lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
===================================================================
--- lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
+++ lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
@@ -937,7 +937,7 @@
 Address ObjectFileELF::GetBaseAddress() {
   if (GetType() == ObjectFile::eTypeObjectFile) {
     for (SectionHeaderCollIter I = std::next(m_section_headers.begin());
-        I != m_section_headers.end(); ++I) {
+         I != m_section_headers.end(); ++I) {
       const ELFSectionHeaderInfo &header = *I;
       if (header.sh_flags & SHF_ALLOC)
        return Address(GetSectionList()->FindSectionByID(SectionIndex(I)), 0);


Index: lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
===================================================================
--- lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
+++ lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
@@ -937,7 +937,7 @@
 Address ObjectFileELF::GetBaseAddress() {
   if (GetType() == ObjectFile::eTypeObjectFile) {
     for (SectionHeaderCollIter I = std::next(m_section_headers.begin());
-	 I != m_section_headers.end(); ++I) {
+         I != m_section_headers.end(); ++I) {
       const ELFSectionHeaderInfo &header = *I;
       if (header.sh_flags & SHF_ALLOC)
 	return Address(GetSectionList()->FindSectionByID(SectionIndex(I)), 0);
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to