mirror of
https://github.com/reactos/CMake.git
synced 2024-12-12 05:45:51 +00:00
55671b41d2
Suppress some cases in `Source/cmGeneratorExpressionNode.cxx` and `Source/cmUVHandlePtr.h` where a few older compilers require a user-defined default constructor (with `{}`).
13 lines
354 B
C++
13 lines
354 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#include "cmGlobalCommonGenerator.h"
|
|
|
|
class cmake;
|
|
|
|
cmGlobalCommonGenerator::cmGlobalCommonGenerator(cmake* cm)
|
|
: cmGlobalGenerator(cm)
|
|
{
|
|
}
|
|
|
|
cmGlobalCommonGenerator::~cmGlobalCommonGenerator() = default;
|