diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-03-23 20:02:01 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-03-23 20:02:01 +0000 |
commit | 54567b9622b4790700b52dba868945dcc9f9f086 (patch) | |
tree | 2af601952ef47cb4f736d2bace6869f38181238a | |
parent | 1dc1e72f738e02f6025c0b619ca6947b367f4a26 (diff) |
hash_map -> unordered_map
-rw-r--r-- | sdext/source/pdfimport/pdfparse/pdfentries.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdext/source/pdfimport/pdfparse/pdfentries.cxx b/sdext/source/pdfimport/pdfparse/pdfentries.cxx index 4665c51..6b11fc7 100644 --- a/sdext/source/pdfimport/pdfparse/pdfentries.cxx +++ b/sdext/source/pdfimport/pdfparse/pdfentries.cxx @@ -864,7 +864,7 @@ bool PDFObject::emit( EmitContext& rWriteContext ) const if( bDeflate && rWriteContext.m_bDeflate ) { // delete flatedecode filter - std::hash_map<OString,PDFEntry*,OStringHash>::const_iterator it = + boost::unordered_map<OString,PDFEntry*,OStringHash>::const_iterator it = pClone->m_pStream->m_pDict->m_aMap.find( "Filter" ); if( it != pClone->m_pStream->m_pDict->m_aMap.end() ) { |