소스 검색

V0.6.11
1、修复了CurlFtp一点小问题

Apple 3 달 전
부모
커밋
e2dcde16aa
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      common/CurlFtp/CurlFtp.cpp

+ 1 - 1
common/CurlFtp/CurlFtp.cpp

@@ -1296,7 +1296,7 @@ bool CurlFtp::checkLocalFileExist(const std::string& localFile)
     /* 检查文件是否存在 */
     bool result = false;
 #if (__cplusplus >= 201703L)
-    result = std::filesystem::exists(localFile)
+    result = std::filesystem::exists(localFile);
 #else
     result = QFile(localFile.c_str()).exists();
 #endif /* (__cplusplus >= 201703L) */