summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_allocator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_allocator.hxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_allocator.hxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_allocator.hxx b/connectivity/source/drivers/postgresql/pq_allocator.hxx
index dadeb8ee4293..78d1dfa3db9a 100644
--- a/connectivity/source/drivers/postgresql/pq_allocator.hxx
+++ b/connectivity/source/drivers/postgresql/pq_allocator.hxx
@@ -210,22 +210,11 @@ inline bool operator!= (const Allocator<T>&, const Allocator<U>&) SAL_THROW(())
/* REQUIRED BY STLPort (see stlport '_alloc.h'):
Hack for compilers that do not support member
template classes (e.g. MSVC 6) */
-#if defined (_MSC_VER)
-#if (_MSC_VER < 1400) // MSVC 6
-namespace _STL
-{
-#endif
-#endif
template<class T, class U>
inline pq_sdbc_driver::Allocator<U> & __stl_alloc_rebind (
pq_sdbc_driver::Allocator<T> & a, U const *)
{
return (pq_sdbc_driver::Allocator<U>&)(a);
}
-#if defined (_MSC_VER)
-#if (_MSC_VER < 1400) // MSVC 6
-}
-#endif
-#endif
#endif /* _PQ_ALLOCATOR_ */