From: Martin Storsjö Date: Mon, 25 Nov 2019 11:59:08 +0000 (+0200) Subject: [llvm-objcopy] [COFF] Fix a typo in a comment. NFC. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d11dc9e77b63b245f4b07fb60b2acae226e3fdcb;p=platform%2Fupstream%2Fllvm.git [llvm-objcopy] [COFF] Fix a typo in a comment. NFC. --- diff --git a/llvm/tools/llvm-objcopy/COFF/Object.h b/llvm/tools/llvm-objcopy/COFF/Object.h index a6a3901..78f8da0 100644 --- a/llvm/tools/llvm-objcopy/COFF/Object.h +++ b/llvm/tools/llvm-objcopy/COFF/Object.h @@ -124,7 +124,7 @@ struct Object { ArrayRef
getSections() const { return Sections; } // This allows mutating individual Sections, but not mutating the list - // of symbols itself. + // of sections itself. iterator_range::iterator> getMutableSections() { return make_range(Sections.begin(), Sections.end()); }