Switch to side-by-side view
--- a/libupnpp/base64.cxx +++ b/libupnpp/base64.cxx @@ -22,6 +22,8 @@ using std::string; #include "base64.hxx" + +namespace UPnPP { #undef DEBUG_BASE64 #ifdef DEBUG_BASE64 @@ -266,6 +268,7 @@ return; } +} // namespace #ifdef TEST_BASE64 #include <stdio.h> #include <stdlib.h> @@ -286,6 +289,8 @@ #define OPT_MOINS 0x1 #define OPT_i 0x2 #define OPT_P 0x4 + +using namespace UPnPP; int main(int argc, char **argv) { @@ -361,4 +366,5 @@ exit(0); } } + #endif