Ver código fonte

Replace namespace usages by dedicated using in time test module

Patrick-Christopher Mattulat 1 ano atrás
pai
commit
49d2515382
1 arquivos alterados com 4 adições e 3 exclusões
  1. 4 3
      test/cases/time/DateTest.cpp

+ 4 - 3
test/cases/time/DateTest.cpp

@@ -11,9 +11,10 @@
 #include <ls-std/ls-std-time.hpp>
 #include <regex>
 
-using namespace ls::std::time;
-using namespace ::std;
-using namespace ::testing;
+using ls::std::time::Date;
+using std::regex;
+using std::string;
+using testing::Test;
 
 namespace
 {