From cd0fffb6e1f779884a9df21d898635ab9d72954c Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Mon, 12 Sep 2016 00:17:09 +0000 Subject: MC: Move MCSection::begin/end to header, NFC llvm-svn: 281188 --- llvm/lib/MC/MCSection.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'llvm/lib/MC/MCSection.cpp') diff --git a/llvm/lib/MC/MCSection.cpp b/llvm/lib/MC/MCSection.cpp index c5e4077..9064cdf 100644 --- a/llvm/lib/MC/MCSection.cpp +++ b/llvm/lib/MC/MCSection.cpp @@ -97,11 +97,3 @@ LLVM_DUMP_METHOD void MCSection::dump() { } OS << "]>"; } - -MCSection::iterator MCSection::begin() { return Fragments.begin(); } - -MCSection::iterator MCSection::end() { return Fragments.end(); } - -MCSection::reverse_iterator MCSection::rbegin() { return Fragments.rbegin(); } - -MCSection::reverse_iterator MCSection::rend() { return Fragments.rend(); } -- cgit v1.1