From 1ea072b9db30ee9e7e10bce1453fad804d3b43e9 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sun, 14 May 2023 16:59:56 +0200 Subject: [PATCH] cc_base.cpp: Removed unnecessary using 'namespace std' statement Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/f83066481db57d59490a41f15d2cd20bbe6e3892 Author: Thilo Graf Date: 2023-05-14 (Sun, 14 May 2023) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/components/cc_base.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gui/components/cc_base.cpp b/src/gui/components/cc_base.cpp index 1820de466..9f9a59624 100644 --- a/src/gui/components/cc_base.cpp +++ b/src/gui/components/cc_base.cpp @@ -30,10 +30,8 @@ #include #include "cc_base.h" -using namespace std; - //abstract basic class CComponents CComponents::CComponents() { - cc_tag = NULL; + cc_tag = NULL; }