aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/User.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/User.h')
-rw-r--r--include/llvm/User.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/User.h b/include/llvm/User.h
index 6b1ece4..2ea3a43 100644
--- a/include/llvm/User.h
+++ b/include/llvm/User.h
@@ -40,12 +40,12 @@ public:
// Operand Iterator interface...
//
typedef vector<Use>::iterator op_iterator;
- typedef vector<Use>::const_iterator op_const_iterator;
+ typedef vector<Use>::const_iterator const_op_iterator;
inline op_iterator op_begin() { return Operands.begin(); }
- inline op_const_iterator op_begin() const { return Operands.begin(); }
+ inline const_op_iterator op_begin() const { return Operands.begin(); }
inline op_iterator op_end() { return Operands.end(); }
- inline op_const_iterator op_end() const { return Operands.end(); }
+ inline const_op_iterator op_end() const { return Operands.end(); }
// dropAllReferences() - This function is in charge of "letting go" of all
// objects that this User refers to. This allows one to