X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fstringcodec%2Futf8.cpp;fp=source%2Fstringcodec%2Futf8.cpp;h=4d3cea50dab27d33fc8030b18e484c0e620466dc;hb=056dc68dfc606a2c14126a70321045d6d9f12e0e;hp=d7b55ffb6041a04eff8b3007e3eee23e26c4452f;hpb=967785734be5c3fc6f75da122c2d93ebbb338271;p=libs%2Fcore.git diff --git a/source/stringcodec/utf8.cpp b/source/stringcodec/utf8.cpp index d7b55ff..4d3cea5 100644 --- a/source/stringcodec/utf8.cpp +++ b/source/stringcodec/utf8.cpp @@ -3,7 +3,7 @@ using namespace std; namespace Msp { -namespace Codecs { +namespace StringCodec { void Utf8::Encoder::encode_char(UnicodeChar ch, string &buf) { @@ -81,5 +81,5 @@ UnicodeChar Utf8::Decoder::decode_char(const string &str, string::const_iterator return *i++; } -} // namespace Codecs +} // namespace StringCodec } // namespace Msp