]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/utf8.cpp
Rename namespace Codecs to StringCodec
[libs/core.git] / source / stringcodec / utf8.cpp
index d7b55ffb6041a04eff8b3007e3eee23e26c4452f..4d3cea50dab27d33fc8030b18e484c0e620466dc 100644 (file)
@@ -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