summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/postgresql/pq_connection.hxx4
-rw-r--r--connectivity/source/drivers/postgresql/pq_databasemetadata.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_connection.hxx b/connectivity/source/drivers/postgresql/pq_connection.hxx
index ef1c7e24966f..e5ebe0bc45f2 100644
--- a/connectivity/source/drivers/postgresql/pq_connection.hxx
+++ b/connectivity/source/drivers/postgresql/pq_connection.hxx
@@ -56,7 +56,7 @@
#include <cppuhelper/weakref.hxx>
#include <cppuhelper/compbase.hxx>
-#include <boost/functional/hash.hpp>
+#include <functional>
#include <libpq-fe.h>
#include <unordered_map>
@@ -160,7 +160,7 @@ typedef std::unordered_map
<
sal_Int32,
OUString,
- ::boost::hash< sal_Int32 >,
+ ::std::hash< sal_Int32 >,
::std::equal_to< sal_Int32 >
> Int2StringMap;
diff --git a/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx b/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx
index a742d4aa7742..1503007c35b8 100644
--- a/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx
+++ b/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx
@@ -1406,7 +1406,7 @@ typedef std::unordered_map
<
sal_Int32,
DatabaseTypeDescription,
- ::boost::hash< sal_Int32 >,
+ ::std::hash< sal_Int32 >,
::std::equal_to< sal_Int32 >
> Oid2DatabaseTypeDescriptionMap;