[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.
[oota-llvm.git] / include / llvm / CodeGen / SelectionDAGNodes.h
index aae304df2a2b108cff1b2ac4d71ef53f6a7620f4..1150aa933ab1b3e392aacf5c9fa90e92df2df97c 100644 (file)
@@ -408,7 +408,7 @@ public:
   /// hasOneUse - Return true if there is exactly one use of this node.
   ///
   bool hasOneUse() const {
-    return !use_empty() && llvm::next(use_begin()) == use_end();
+    return !use_empty() && std::next(use_begin()) == use_end();
   }
 
   /// use_size - Return the number of uses of this node. This method takes