Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'software_renderer/glyph_cache.cpp')
-rw-r--r--software_renderer/glyph_cache.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/software_renderer/glyph_cache.cpp b/software_renderer/glyph_cache.cpp
index dea432516c..f857bd418b 100644
--- a/software_renderer/glyph_cache.cpp
+++ b/software_renderer/glyph_cache.cpp
@@ -66,7 +66,7 @@ void GlyphCache::addFonts(std::vector<std::string> const & fontNames)
m_impl->addFonts(fontNames);
}
-pair<Font*, int> GlyphCache::getCharIDX(GlyphKey const & key)
+std::pair<Font*, int> GlyphCache::getCharIDX(GlyphKey const & key)
{
return m_impl->getCharIDX(key);
}
@@ -76,7 +76,7 @@ GlyphMetrics const GlyphCache::getGlyphMetrics(GlyphKey const & key)
return m_impl->getGlyphMetrics(key);
}
-shared_ptr<GlyphBitmap> const GlyphCache::getGlyphBitmap(GlyphKey const & key)
+std::shared_ptr<GlyphBitmap> const GlyphCache::getGlyphBitmap(GlyphKey const & key)
{
return m_impl->getGlyphBitmap(key);
}