Move RemoveFromVector out of the global namespace.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51090 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2008-05-14 01:02:49 +00:00
parent 9c78a39907
commit 1d5562f72e

View File

@ -43,6 +43,8 @@
#include <algorithm>
#include <ostream>
namespace llvm {
template<typename T>
static void RemoveFromVector(std::vector<T*> &V, T *N) {
typename std::vector<T*>::iterator I = std::find(V.begin(), V.end(), N);
@ -50,8 +52,6 @@ static void RemoveFromVector(std::vector<T*> &V, T *N) {
V.erase(I);
}
namespace llvm {
class DominatorTree;
class LoopInfo;
class PHINode;