Kaydet (Commit) fbe8b005 authored tarafından Fridrich Štrba's avatar Fridrich Štrba

Fix build of pgsql connector (std::hash -> boost::hash)

Signed-off-by: 's avatarFridrich Štrba <fridrich.strba@bluewin.ch>
üst 01d59b7a
......@@ -183,7 +183,7 @@ typedef ::boost::unordered_map
<
const sal_Int32,
rtl::OUString,
::std::hash< sal_Int32 >,
::boost::hash< sal_Int32 >,
::std::equal_to< sal_Int32 >,
Allocator< ::std::pair< sal_Int32, ::rtl::OUString > >
> Int2StringMap;
......
......@@ -1455,7 +1455,7 @@ typedef ::boost::unordered_map
<
sal_Int32,
DatabaseTypeDescription,
::std::hash< sal_Int32 >,
::boost::hash< sal_Int32 >,
::std::equal_to< sal_Int32 >,
Allocator< ::std::pair< sal_Int32, DatabaseTypeDescription > >
> Oid2DatabaseTypeDescriptionMap;
......
......@@ -181,14 +181,6 @@ ResultSetMetaData::ResultSetMetaData(
}
}
// typedef std::hash_map<
// Oid,
// rtl::OUString,
// std::hash< Oid >,
// std::equal_to< Oid >,
// Allocator < std::pair< Oid, rtl::OUString > > > PqTypeMap;
void ResultSetMetaData::checkForTypes()
{
if( ! m_checkedForTypes )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment