diff options
author | John Criswell <criswell@uiuc.edu> | 2003-11-12 21:32:06 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-11-12 21:32:06 +0000 |
commit | fed0b2995ecaad811a3e66c8cbe8d3920dda8b29 (patch) | |
tree | 3b7a6a8a76920964ff60d5564ea7e040aed45f1a /include/llvm | |
parent | 7af03e9d859dae6d7dfff07596225d90b410a46d (diff) | |
download | external_llvm-fed0b2995ecaad811a3e66c8cbe8d3920dda8b29.zip external_llvm-fed0b2995ecaad811a3e66c8cbe8d3920dda8b29.tar.gz external_llvm-fed0b2995ecaad811a3e66c8cbe8d3920dda8b29.tar.bz2 |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Support/MallocAllocator.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Support/MallocAllocator.h b/include/llvm/Support/MallocAllocator.h index 766a67f..24f1a43 100644 --- a/include/llvm/Support/MallocAllocator.h +++ b/include/llvm/Support/MallocAllocator.h @@ -23,8 +23,6 @@ #include <cstdlib> #include <memory> -namespace llvm { - template<typename T> struct MallocAllocator { typedef size_t size_type; @@ -81,6 +79,4 @@ namespace std { }; } -} // End llvm namespace - #endif |