mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 08:08:24 -05:00
clang-tidy: Use = default
Suppress some cases in `Source/cmGeneratorExpressionNode.cxx` and
`Source/cmUVHandlePtr.h` where a few older compilers require a
user-defined default constructor (with `{}`).
This commit is contained in:
committed by
Brad King
parent
a7f5cd45e1
commit
55671b41d2
@@ -42,7 +42,7 @@ class cmExportFileGenerator
|
||||
{
|
||||
public:
|
||||
cmExportFileGenerator();
|
||||
virtual ~cmExportFileGenerator() {}
|
||||
virtual ~cmExportFileGenerator() = default;
|
||||
|
||||
/** Set the full path to the export file to generate. */
|
||||
void SetExportFile(const char* mainFile);
|
||||
|
||||
Reference in New Issue
Block a user