diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-22 18:51:48 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-29 17:39:29 (GMT) |
commit | 1b929ba8e41b49ab9c30c095bf9585b3ab85656b (patch) | |
tree | 36e141a00880df62f0502d6b154e1708eb7afbc0 /Source/cmVisualStudioWCEPlatformParser.h | |
parent | bcada09e451b4765ec1239ad11a282ed3ccbc71b (diff) | |
download | CMake-1b929ba8e41b49ab9c30c095bf9585b3ab85656b.zip CMake-1b929ba8e41b49ab9c30c095bf9585b3ab85656b.tar.gz CMake-1b929ba8e41b49ab9c30c095bf9585b3ab85656b.tar.bz2 |
clang-tidy: fix `modernize-use-nullptr` lints
Diffstat (limited to 'Source/cmVisualStudioWCEPlatformParser.h')
-rw-r--r-- | Source/cmVisualStudioWCEPlatformParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudioWCEPlatformParser.h b/Source/cmVisualStudioWCEPlatformParser.h index e0a4def..895a90d 100644 --- a/Source/cmVisualStudioWCEPlatformParser.h +++ b/Source/cmVisualStudioWCEPlatformParser.h @@ -16,7 +16,7 @@ class cmVisualStudioWCEPlatformParser : public cmXMLParser { public: - cmVisualStudioWCEPlatformParser(const char* name = NULL) + cmVisualStudioWCEPlatformParser(const char* name = nullptr) : RequiredName(name) { } |