main.cpp: switch to a using declaration

..instead of pulling the whole namespace
This commit is contained in:
surtur 2021-11-01 09:25:44 +01:00
parent 7a133ab2dc
commit 7d123ce639
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -1,8 +1,8 @@
#include <iostream>
using namespace std;
int main() {
using std::cout;
using std::endl;
cout << "[*] doing evil stuff" << endl;
return 0;
}