summaryrefslogtreecommitdiff
path: root/src/fontcache.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2013-06-28 19:31:31 +0000
committerrubidium <rubidium@openttd.org>2013-06-28 19:31:31 +0000
commit3831e3829d17f9d89ad02926ba6607036f3c4571 (patch)
tree1629706b91da42c0f72c48dbb8993863fff1d95a /src/fontcache.cpp
parent934f4decba5fe24f761187e1c385ed63b2403bba (diff)
downloadopenttd-3831e3829d17f9d89ad02926ba6607036f3c4571.tar.xz
(svn r25501) -Fix: compilation error on OS X
Diffstat (limited to 'src/fontcache.cpp')
-rw-r--r--src/fontcache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontcache.cpp b/src/fontcache.cpp
index 5b66c3b7a..2c1f7aafa 100644
--- a/src/fontcache.cpp
+++ b/src/fontcache.cpp
@@ -191,7 +191,7 @@ class FreeTypeFontCache : public FontCache {
private:
FT_Face face; ///< The font face associated with this font.
- typedef SmallMap<uint32, SmallPair<size_t, const void*>> FontTable; ///< Table with font table cache
+ typedef SmallMap<uint32, SmallPair<size_t, const void*> > FontTable; ///< Table with font table cache
FontTable font_tables; ///< Cached font tables.
/** Container for information about a glyph. */