cmTarget: Remove unneeded constructors.

The compiler generated ones are fine here.
This commit is contained in:
Stephen Kelly 2015-10-09 23:11:48 +02:00
parent 983c00f8f9
commit 6694d99376
1 changed files with 0 additions and 15 deletions

View File

@ -64,16 +64,6 @@ const char* cmTarget::GetTargetTypeName(TargetType targetType)
class cmTargetInternals
{
public:
cmTargetInternals()
: Backtrace()
{
}
cmTargetInternals(cmTargetInternals const&)
: Backtrace()
{
}
~cmTargetInternals();
// The backtrace when the target was created.
cmListFileBacktrace Backtrace;
@ -94,11 +84,6 @@ public:
std::vector<cmListFileBacktrace> LinkImplementationPropertyBacktraces;
};
//----------------------------------------------------------------------------
cmTargetInternals::~cmTargetInternals()
{
}
//----------------------------------------------------------------------------
cmTarget::cmTarget()
{