소스 검색

Fixed FilePathSeparator class

- fixed warning
Patrick 4 년 전
부모
커밋
31ba8ed366
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      source/io/FilePathSeparator.hpp

+ 1 - 1
source/io/FilePathSeparator.hpp

@@ -24,7 +24,7 @@ namespace ls_std {
       }
 
       static char getOperatingSystemSpecificSeparator() {
-        char separator {};
+        char separator;
 
         #ifdef _WIN32
           separator = ls_std::FilePathSeparator::getUnixFilePathSeparator();