summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/postgresql/pq_statics.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-15 14:23:18 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-15 15:03:50 +0100
commit73d4d9a5834bf5eb92c2643e30bec9d307d00175 (patch)
tree890447c4a7d0f8bb55fbad8a883b38c01aff2342 /connectivity/source/drivers/postgresql/pq_statics.hxx
parenta908e4eb41b83d051232f9e551e779e77c9a9c4f (diff)
Related: #i124896# remove obsoleted pq_allocator.hxx
Change-Id: I8a2b54c97f20e581b9703bf33dbba537c2f603c2
Diffstat (limited to 'connectivity/source/drivers/postgresql/pq_statics.hxx')
-rw-r--r--connectivity/source/drivers/postgresql/pq_statics.hxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_statics.hxx b/connectivity/source/drivers/postgresql/pq_statics.hxx
index df6d25931d82..a8890a811399 100644
--- a/connectivity/source/drivers/postgresql/pq_statics.hxx
+++ b/connectivity/source/drivers/postgresql/pq_statics.hxx
@@ -46,8 +46,6 @@
#include <cppuhelper/propshlp.hxx>
-#include "pq_allocator.hxx"
-
namespace pq_sdbc_driver
{
@@ -94,7 +92,7 @@ struct ColumnMetaData
bool isSigned;
};
-typedef std::vector< ColumnMetaData, Allocator< ColumnMetaData > > ColumnMetaDataVector;
+typedef std::vector< ColumnMetaData > ColumnMetaDataVector;
struct TypeDetails
{
@@ -110,8 +108,7 @@ typedef ::boost::unordered_map
OUString,
sal_Int32,
OUStringHash,
- ::std::equal_to< OUString >,
- Allocator< ::std::pair< const OUString , sal_Int32 > >
+ ::std::equal_to< OUString >
> BaseTypeMap;