diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-22 18:44:51 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-29 17:39:29 (GMT) |
commit | 27e37b8a5a661c7c6ea700d6b3e535cf4a582277 (patch) | |
tree | 69e77e3fa760814cf3842f3c19b4c695ba6aabd2 /Source/cmGlobalMinGWMakefileGenerator.h | |
parent | 83d685ee1bfb58ee53aee9e94595ff3ed4e44096 (diff) | |
download | CMake-27e37b8a5a661c7c6ea700d6b3e535cf4a582277.zip CMake-27e37b8a5a661c7c6ea700d6b3e535cf4a582277.tar.gz CMake-27e37b8a5a661c7c6ea700d6b3e535cf4a582277.tar.bz2 |
clang-tidy: fix `modernize-use-override` lints
Diffstat (limited to 'Source/cmGlobalMinGWMakefileGenerator.h')
-rw-r--r-- | Source/cmGlobalMinGWMakefileGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalMinGWMakefileGenerator.h b/Source/cmGlobalMinGWMakefileGenerator.h index b39db03..7dd968b 100644 --- a/Source/cmGlobalMinGWMakefileGenerator.h +++ b/Source/cmGlobalMinGWMakefileGenerator.h @@ -27,7 +27,7 @@ public: new cmGlobalGeneratorSimpleFactory<cmGlobalMinGWMakefileGenerator>()); } //! Get the name for the generator. - virtual std::string GetName() const + std::string GetName() const override { return cmGlobalMinGWMakefileGenerator::GetActualName(); } |