From 7d123ce63993ee7a696e82055a2fa3528302e9b9 Mon Sep 17 00:00:00 2001 From: surtur Date: Mon, 1 Nov 2021 09:25:44 +0100 Subject: [PATCH] main.cpp: switch to a using declaration ..instead of pulling the whole namespace --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index bbf0d81..88dd5d5 100644 --- a/main.cpp +++ b/main.cpp @@ -1,8 +1,8 @@ #include -using namespace std; - int main() { + using std::cout; + using std::endl; cout << "[*] doing evil stuff" << endl; return 0; }