summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-01-21 16:09:45 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-01-21 16:09:45 +0000
commit94ad5a120fe320171f1630d1878ec1ae8b7eafa1 (patch)
treea858f75b49d858ae2004038877af56a75616fcb0 /include/llvm
parentf862a4aefe2b50bc7643d27ae6689356cb977f63 (diff)
downloadllvm-94ad5a120fe320171f1630d1878ec1ae8b7eafa1.tar.gz
llvm-94ad5a120fe320171f1630d1878ec1ae8b7eafa1.tar.bz2
llvm-94ad5a120fe320171f1630d1878ec1ae8b7eafa1.tar.xz
Rename these methods to match the style guide.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199751 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Object/Archive.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Object/Archive.h b/include/llvm/Object/Archive.h
index 1cba51954e..22c45ccac2 100644
--- a/include/llvm/Object/Archive.h
+++ b/include/llvm/Object/Archive.h
@@ -174,11 +174,11 @@ public:
return Format;
}
- child_iterator begin_children(bool SkipInternal = true) const;
- child_iterator end_children() const;
+ child_iterator child_begin(bool SkipInternal = true) const;
+ child_iterator child_end() const;
- symbol_iterator begin_symbols() const;
- symbol_iterator end_symbols() const;
+ symbol_iterator symbol_begin() const;
+ symbol_iterator symbol_end() const;
// Cast methods.
static inline bool classof(Binary const *v) {