소스 검색

Fix SystemTime compilation error in UNIX like machines

Patrick-Christopher Mattulat 1 년 전
부모
커밋
f7ce12b044
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      source/ls-std/time/system-time/SystemTime.cpp

+ 2 - 0
source/ls-std/time/system-time/SystemTime.cpp

@@ -27,7 +27,9 @@ using ls::std::time::PosixClock;
 #endif
 using ls::std::time::SystemTime;
 using ls::std::time::SystemTimeParameter;
+#ifdef _WIN32
 using ls::std::time::WindowsClock;
+#endif
 using ls::std::time::type::UnixTimestamp;
 using std::make_shared;
 using std::shared_ptr;