[Libreoffice-commits] core.git: canvas/source

Stephan Bergmann sbergman at redhat.com
Mon Oct 7 12:14:50 PDT 2013


 canvas/source/opengl/ogl_texturecache.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit be0db4421e34df41c610a4b2ab46573969894aeb
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon Oct 7 21:14:30 2013 +0200

    We're still stuck with boost::unordered_map
    
    Change-Id: If6d59fefd35541a53405dab13188a217c48ad52c

diff --git a/canvas/source/opengl/ogl_texturecache.hxx b/canvas/source/opengl/ogl_texturecache.hxx
index 0f81a26..50d025a 100644
--- a/canvas/source/opengl/ogl_texturecache.hxx
+++ b/canvas/source/opengl/ogl_texturecache.hxx
@@ -11,7 +11,7 @@
 #define OGL_TEXTURECACHE_HXX
 
 #include <sal/types.h>
-#include <unordered_map>
+#include <boost/unordered_map.hpp>
 
 namespace com { namespace sun { namespace star {
     namespace geometry { struct IntegerSize2D; }
@@ -52,7 +52,7 @@ namespace oglcanvas
             unsigned int nTexture;
             bool bOld;
         };
-        typedef std::unordered_map<sal_uInt32,CacheEntry> TextureCacheMapT;
+        typedef boost::unordered_map<sal_uInt32,CacheEntry> TextureCacheMapT;
         mutable TextureCacheMapT maCache;
         mutable sal_uInt32       mnMissCount;
         mutable sal_uInt32       mnHitCount;


More information about the Libreoffice-commits mailing list