# HG changeset patch # User David Demelier # Date 1395522358 -3600 # Node ID 35e34b0b80d45b74250232def2d5a8b7835fbd72 # Parent 04aa866535fba85556f22e43265a433270fad588 Utf8: remove namespace diff -r 04aa866535fb -r 35e34b0b80d4 C++/Utf8.cpp --- a/C++/Utf8.cpp Sat Mar 22 22:02:24 2014 +0100 +++ b/C++/Utf8.cpp Sat Mar 22 22:05:58 2014 +0100 @@ -18,8 +18,6 @@ #include "Utf8.h" -namespace irccd { - namespace { #define LEN(x) (sizeof (x) / sizeof (x[0])) @@ -4619,5 +4617,3 @@ return c; } - -} // !irccd diff -r 04aa866535fb -r 35e34b0b80d4 C++/Utf8.h --- a/C++/Utf8.h Sat Mar 22 22:02:24 2014 +0100 +++ b/C++/Utf8.h Sat Mar 22 22:05:58 2014 +0100 @@ -28,8 +28,6 @@ #include #include -namespace irccd { - /** * @class Utf8 * @brief Conversion between UTF-8 and UCS-4 @@ -211,6 +209,4 @@ } }; -} // !irccd - #endif // !_UTF8_H_