소스 검색

Source: fix clang-tidy modernize-redundant-void-arg warning

Sean McBride 4 년 전
부모
커밋
7e4e192ce2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Source/cmCPluginAPI.cxx

+ 1 - 1
Source/cmCPluginAPI.cxx

@@ -504,7 +504,7 @@ using cmCPluginAPISourceFileMap =
   std::map<cmSourceFile*, std::unique_ptr<cmCPluginAPISourceFile>>;
 static cmCPluginAPISourceFileMap cmCPluginAPISourceFiles;
 
-static void* CCONV cmCreateSourceFile(void)
+static void* CCONV cmCreateSourceFile()
 {
   return new cmCPluginAPISourceFile;
 }