소스 검색

Replace namespace usages by dedicated using in time test module

Patrick-Christopher Mattulat 1 년 전
부모
커밋
49d2515382
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  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
 {