Commit 08b69bf0 by 정용석

using namespace관련하여 메모

parent 86d2f2a7
...@@ -3,7 +3,8 @@ ...@@ -3,7 +3,8 @@
#include <vector> #include <vector>
#include <string> #include <string>
using namespace std; using namespace std; // using namespace 문구를 사용하는 것은
// namespace 충돌 문제가 있어서 지양된다.
const string base64_table = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; const string base64_table = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
string base64_encode(const string &str){ string base64_encode(const string &str){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment