diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-22 10:38:05 -0500 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-27 08:45:45 -0500 |
commit | cdfc4e31953274be9b745614b4b7620d365a7b5e (patch) | |
tree | d730ed1a5258286efbd83ac84e4a24f075bfa2aa /Source/cmOutputRequiredFilesCommand.cxx | |
parent | 808b17b1206dd70c7fbd676e8c24181cde537954 (diff) | |
download | cmake-cdfc4e31953274be9b745614b4b7620d365a7b5e.tar.gz |
clang-tidy: fix `readability-qualified-auto` warnings
Diffstat (limited to 'Source/cmOutputRequiredFilesCommand.cxx')
-rw-r--r-- | Source/cmOutputRequiredFilesCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmOutputRequiredFilesCommand.cxx b/Source/cmOutputRequiredFilesCommand.cxx index aa5abcb7a0..d589614d7e 100644 --- a/Source/cmOutputRequiredFilesCommand.cxx +++ b/Source/cmOutputRequiredFilesCommand.cxx @@ -376,7 +376,7 @@ protected: } // Didn't find an instance. Create a new one and save it. auto info = cm::make_unique<cmDependInformation>(); - auto ptr = info.get(); + auto* ptr = info.get(); info->FullPath = fullPath; info->PathOnly = cmSystemTools::GetFilenamePath(fullPath); info->IncludeName = file; |