mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 14:50:10 -06:00
Ninja: Avoid using 'this' in member initializers
VS complains warning C4355: 'this' : used in base member initializer list so initialize the member in the constructor body instead.
This commit is contained in:
@@ -27,8 +27,8 @@ cmNinjaNormalTargetGenerator(cmTarget* target)
|
||||
, TargetNameReal()
|
||||
, TargetNameImport()
|
||||
, TargetNamePDB()
|
||||
, TargetLinkLanguage(target->GetLinkerLanguage(this->GetConfigName()))
|
||||
{
|
||||
this->TargetLinkLanguage = target->GetLinkerLanguage(this->GetConfigName());
|
||||
if (target->GetType() == cmTarget::EXECUTABLE)
|
||||
target->GetExecutableNames(this->TargetNameOut,
|
||||
this->TargetNameReal,
|
||||
|
||||
Reference in New Issue
Block a user