rename use_const_iterator to const_use_iterator for consistency's sake
[oota-llvm.git] / include / llvm / Support / CallSite.h
index 9d9a30e6ad2f0305762c65569d111c5ad2125b76..480535fa9e767ae9bc8e85ac5ea2b887d5851468 100644 (file)
@@ -196,7 +196,7 @@ public:
   bool isCallee(Value::use_iterator UI) const {
     return getCallee() == &UI.getUse();
   }
-  bool isCallee(Value::use_const_iterator UI) const {
+  bool isCallee(Value::const_use_iterator UI) const {
     return getCallee() == &UI.getUse();
   }
 private: