From 9537a75c23653c122b0b69ee8a88ef1fdcd3ff9c Mon Sep 17 00:00:00 2001 From: John Criswell Date: Wed, 12 Nov 2003 21:32:06 +0000 Subject: [PATCH] Regress to not using the llvm namespace. This keeps Pool Allocation stuff from compiling. We can re-visit it later when we have time to do it right. llvm-svn: 9932 --- llvm/include/Support/MallocAllocator.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/llvm/include/Support/MallocAllocator.h b/llvm/include/Support/MallocAllocator.h index 766a67fa22f1..24f1a43c8d12 100644 --- a/llvm/include/Support/MallocAllocator.h +++ b/llvm/include/Support/MallocAllocator.h @@ -23,8 +23,6 @@ #include #include -namespace llvm { - template struct MallocAllocator { typedef size_t size_type; @@ -81,6 +79,4 @@ namespace std { }; } -} // End llvm namespace - #endif