From 2370ed1f5694dc342393d111ee975db78b3eb252 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 7 May 1999 10:13:49 +0000 Subject: [PATCH] Make it possible to compile with __USE_MALLOC. From-SVN: r26818 --- libstdc++/stl/stl_alloc.h | 10 ++++++++-- libstdc++/stlinst.cc | 2 ++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/libstdc++/stl/stl_alloc.h b/libstdc++/stl/stl_alloc.h index 51115b23482f..208309a389b5 100644 --- a/libstdc++/stl/stl_alloc.h +++ b/libstdc++/stl/stl_alloc.h @@ -894,6 +894,7 @@ inline bool operator!=(const __malloc_alloc_template<__inst>&, } #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */ +#ifndef __USE_MALLOC template inline bool operator==(const __default_alloc_template<__threads, __inst>&, const __default_alloc_template<__threads, __inst>&) @@ -901,14 +902,15 @@ inline bool operator==(const __default_alloc_template<__threads, __inst>&, return true; } -#ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER +# ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER template inline bool operator!=(const __default_alloc_template<__threads, __inst>&, const __default_alloc_template<__threads, __inst>&) { return false; } -#endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */ +# endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */ +#endif template inline bool operator==(const debug_alloc<_Alloc>&, @@ -983,6 +985,7 @@ struct _Alloc_traits<_Tp, __malloc_alloc_template<__inst> > typedef __allocator<_Tp, __malloc_alloc_template<__inst> > allocator_type; }; +#ifndef __USE_MALLOC template struct _Alloc_traits<_Tp, __default_alloc_template<__threads, __inst> > { @@ -992,6 +995,7 @@ struct _Alloc_traits<_Tp, __default_alloc_template<__threads, __inst> > typedef __allocator<_Tp, __default_alloc_template<__threads, __inst> > allocator_type; }; +#endif template struct _Alloc_traits<_Tp, debug_alloc<_Alloc> > @@ -1013,6 +1017,7 @@ struct _Alloc_traits<_Tp, typedef __allocator<_Tp, __malloc_alloc_template<__inst> > allocator_type; }; +#ifndef __USE_MALLOC template struct _Alloc_traits<_Tp, __allocator<_Tp1, @@ -1024,6 +1029,7 @@ struct _Alloc_traits<_Tp, typedef __allocator<_Tp, __default_alloc_template<__thr,__inst> > allocator_type; }; +#endif template struct _Alloc_traits<_Tp, __allocator<_Tp1, debug_alloc<_Alloc> > > diff --git a/libstdc++/stlinst.cc b/libstdc++/stlinst.cc index b71dc7ea09a3..2a221fbaee98 100644 --- a/libstdc++/stlinst.cc +++ b/libstdc++/stlinst.cc @@ -3,6 +3,8 @@ #include +#ifndef __USE_MALLOC template class __default_alloc_template<__NODE_ALLOCATOR_THREADS, 0>; +#endif template class __malloc_alloc_template<0>;