]> git.tdb.fi Git - libs/core.git/blobdiff - source/iso88591.cpp
Further style and comment adjustments
[libs/core.git] / source / iso88591.cpp
index 17f84b1755311fde538e6b899f9823133f3d39af..064d4a76792eae33f12ee45a802187fc66a56750 100644 (file)
@@ -17,12 +17,12 @@ void Iso88591::Encoder::encode_char(UnicodeChar ch, string &buf)
        if(ch<0 || ch>0xFF)
                return error(ch, buf, "Can't express character in ISO-8859-1");
 
-       buf+=ch;
+       buf += ch;
 }
 
 void Iso88591::Encoder::transliterate(UnicodeChar, string &buf)
 {
-       buf+='?';
+       buf += '?';
 }