diff options
author | Sean McBride <sean@rogue-research.com> | 2021-10-25 13:20:35 (GMT) |
---|---|---|
committer | Sean McBride <sean@rogue-research.com> | 2021-10-25 16:27:10 (GMT) |
commit | 7e4e192ce2a579c22120150953df5adf26435eef (patch) | |
tree | 1146ca89b7c10a5406d7f3ff2d82565f352a8e42 /Source/cmCPluginAPI.cxx | |
parent | 8d671dd94c44e8b11b4619da8f3985835bcdaa66 (diff) | |
download | CMake-7e4e192ce2a579c22120150953df5adf26435eef.zip CMake-7e4e192ce2a579c22120150953df5adf26435eef.tar.gz CMake-7e4e192ce2a579c22120150953df5adf26435eef.tar.bz2 |
Source: fix clang-tidy modernize-redundant-void-arg warning
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index baf9c98..c49347d 100644 --- a/Source/cmCPluginAPI.cxx +++ b/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; } |