From: Jim Grosbach Date: Mon, 21 Apr 2014 18:10:29 +0000 (+0000) Subject: Tidy up. Remove extraneous typedef. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e6b88dc26a67649e62ed0b8af170ce14c7058031;p=oota-llvm.git Tidy up. Remove extraneous typedef. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206768 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Object/ObjectFile.h b/include/llvm/Object/ObjectFile.h index 3533669b8b8..10209b90c05 100644 --- a/include/llvm/Object/ObjectFile.h +++ b/include/llvm/Object/ObjectFile.h @@ -113,9 +113,9 @@ public: relocation_iterator relocation_begin() const; relocation_iterator relocation_end() const; - typedef iterator_range relocation_iterator_range; - relocation_iterator_range relocations() const { - return relocation_iterator_range(relocation_begin(), relocation_end()); + iterator_range relocations() const { + return iterator_range(relocation_begin(), + relocation_end()); } section_iterator getRelocatedSection() const;