* Fix indentation by replacing a few tabs with spaces.
diff --git a/src/FTCharmap.cpp b/src/FTCharmap.cpp
index 27a096a..b09045b 100644
--- a/src/FTCharmap.cpp
+++ b/src/FTCharmap.cpp
@@ -93,5 +93,6 @@ unsigned int FTCharmap::FontIndex(const unsigned int characterCode)
void FTCharmap::InsertIndex(const unsigned int characterCode,
const size_t containerIndex)
{
- charMap.insert(characterCode, static_cast<FTCharToGlyphIndexMap::GlyphIndex>(containerIndex));
+ charMap.insert(characterCode, static_cast<FTCharToGlyphIndexMap::GlyphIndex>(containerIndex));
}
+
diff --git a/src/FTFace.cpp b/src/FTFace.cpp
index da9a166..7fd8154 100644
--- a/src/FTFace.cpp
+++ b/src/FTFace.cpp
@@ -49,7 +49,7 @@ FTFace::FTFace(const char* fontFilePath, bool precomputeKerning)
}
numGlyphs = (*ftFace)->num_glyphs;
- hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0);
+ hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0);
if(hasKerningTable && precomputeKerning)
{
@@ -79,7 +79,7 @@ FTFace::FTFace(const unsigned char *pBufferBytes, size_t bufferSizeInBytes,
}
numGlyphs = (*ftFace)->num_glyphs;
- hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0);
+ hasKerningTable = (FT_HAS_KERNING((*ftFace)) != 0);
if(hasKerningTable && precomputeKerning)
{