]> sigrok.org Git - libsigrokflow.git/commitdiff
Avoid "using namespace std" everywhere.
authorUwe Hermann <redacted>
Thu, 17 Jan 2019 23:13:47 +0000 (00:13 +0100)
committerUwe Hermann <redacted>
Thu, 17 Jan 2019 23:13:47 +0000 (00:13 +0100)
include/libsigrokflow/legacy_capture_device.hpp
include/libsigrokflow/legacy_decoder.hpp
include/libsigrokflow/legacy_input.hpp
include/libsigrokflow/legacy_output.hpp
src/init.cpp
src/legacy_capture_device.cpp
src/legacy_decoder.cpp
src/legacy_input.cpp
src/legacy_output.cpp

index 03ff5712ec7965f1db48c5b18fb641aeb07cb4f1..715bea02367d8b2eaf7951495eb7c69074fc46d3 100644 (file)
@@ -33,7 +33,7 @@
 namespace Srf
 {
 
-using namespace std;
+using std::shared_ptr;
 
 #ifdef HAVE_LIBSIGROKCXX
 class LegacyCaptureDevice :
index fecff051e3a75d4f3cff24b0171467cb043cd4e3..f465c22bb704fe4d3e54e5740cbd4743c9d673ba 100644 (file)
@@ -33,7 +33,7 @@
 namespace Srf
 {
 
-using namespace std;
+using std::shared_ptr;
 
 #ifdef HAVE_LIBSIGROKDECODE
 class LegacyDecoder :
index 2516adcc7eb59855d8cdeb0807387132915d72fb..f8ed3fe8633ec6fe4cba902af5710a5d7756a7ea 100644 (file)
@@ -33,7 +33,9 @@
 namespace Srf
 {
 
-using namespace std;
+using std::map;
+using std::shared_ptr;
+using std::string;
 
 #ifdef HAVE_LIBSIGROKCXX
 class LegacyInput :
index 7e78bda1843822971f468f13ae3d01383fb47b9d..a8da16ec358c774310090c3e475646b49a2545bc 100644 (file)
@@ -33,7 +33,9 @@
 namespace Srf
 {
 
-using namespace std;
+using std::map;
+using std::shared_ptr;
+using std::string;
 
 #ifdef HAVE_LIBSIGROKCXX
 class LegacyOutput :
index 0c3daca3378b08a31f515f169891af916515a029..d4c89eb79eac6aea1c2eed41c7b5fbf8384a3be2 100644 (file)
@@ -29,7 +29,7 @@
 
 namespace Srf
 {
-using namespace std;
+using std::runtime_error;
 
 static bool srf_initialized_ = false;
 
index 419a69a3678b9799c0663caa3aa007ee6abf7014..2f5ce0b1b681a36afc8a4c94a6320d2397964cb6 100644 (file)
 namespace Srf
 {
 
-using namespace std;
-using namespace std::placeholders;
+using std::move;
+using std::placeholders::_1;
+using std::placeholders::_2;
+using std::runtime_error;
+using std::shared_ptr;
+using std::static_pointer_cast;
 
 #ifdef HAVE_LIBSIGROKCXX
 void LegacyCaptureDevice::class_init(Gst::ElementClass<LegacyCaptureDevice> *klass)
index 500ae49bfb74dbe672494ea1816b0b23837ccd0c..ac3474fd79cc97702d406f305cdfa38f48c485c0 100644 (file)
@@ -26,7 +26,7 @@
 namespace Srf
 {
 
-using namespace std;
+using std::runtime_error;
 
 #ifdef HAVE_LIBSIGROKDECODE
 void LegacyDecoder::class_init(Gst::ElementClass<LegacyDecoder> *klass)
index b2e59a7b8437f30d445fb4bb3bb7e5949f12b5c7..e862ca4af7c99edded8f709b43ca0ec03692874a 100644 (file)
 namespace Srf
 {
 
-using namespace std;
-using namespace std::placeholders;
+using std::map;
+using std::move;
+using std::placeholders::_1;
+using std::placeholders::_2;
+using std::runtime_error;
+using std::shared_ptr;
+using std::static_pointer_cast;
+using std::string;
 
 #ifdef HAVE_LIBSIGROKCXX
 void LegacyInput::class_init(Gst::ElementClass<LegacyInput> *klass)
index de8e5be53c41861114dc2faa79b758f93f490958..194d77cda189fabea092e734753aef9b9488b424 100644 (file)
 namespace Srf
 {
 
-using namespace std;
+using std::cout;
+using std::map;
+using std::runtime_error;
+using std::shared_ptr;
+using std::string;
 
 #ifdef HAVE_LIBSIGROKCXX
 void LegacyOutput::class_init(Gst::ElementClass<LegacyOutput> *klass)