mirror of
https://github.com/reactos/CMake.git
synced 2025-02-03 18:42:32 +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 `{}`).
14 lines
417 B
C++
14 lines
417 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#include "cmCPackTGZGenerator.h"
|
|
|
|
#include "cmArchiveWrite.h"
|
|
#include "cmCPackArchiveGenerator.h"
|
|
|
|
cmCPackTGZGenerator::cmCPackTGZGenerator()
|
|
: cmCPackArchiveGenerator(cmArchiveWrite::CompressGZip, "paxr")
|
|
{
|
|
}
|
|
|
|
cmCPackTGZGenerator::~cmCPackTGZGenerator() = default;
|