You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2022/11/22 09:07:52 UTC

[mynewt-nimble] 01/03: Removed 'using namespace std;' from header file

This is an automated email from the ASF dual-hosted git repository.

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit 639da1a0f3a330bf765c2fd0662cb54fac69c1a6
Author: timoxd7 <ti...@gmx.de>
AuthorDate: Mon Nov 7 14:51:55 2022 +0100

    Removed 'using namespace std;' from header file
---
 porting/npl/linux/src/wqueue.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/porting/npl/linux/src/wqueue.h b/porting/npl/linux/src/wqueue.h
index 1de779e7..d9a7b6cc 100644
--- a/porting/npl/linux/src/wqueue.h
+++ b/porting/npl/linux/src/wqueue.h
@@ -25,8 +25,6 @@
 #include <pthread.h>
 #include <list>
 
-using namespace std;
-
 template <typename T> class wqueue
 {
     list<T>              m_queue;