summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-03-26 13:18:17 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-03-26 13:18:25 (GMT)
commit6a0c1726e0c6c3381c7def2a5eff2ec239ba3abd (patch)
treeaf7e9adb05303f798367aeaf5300b5aee5c4df01 /Source/cmTarget.cxx
parent577fc3ef1942fd11791a4b6cd557b6da32daa5d6 (diff)
parent1e4b5c7d090fc77daa2aaede0bd57d476e3f45ed (diff)
downloadCMake-6a0c1726e0c6c3381c7def2a5eff2ec239ba3abd.zip
CMake-6a0c1726e0c6c3381c7def2a5eff2ec239ba3abd.tar.gz
CMake-6a0c1726e0c6c3381c7def2a5eff2ec239ba3abd.tar.bz2
Merge topic 'cleanup-endls-2'
1e4b5c7d09 Refactor: Avoid `std::endl` where it's not necessary (part 2) Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4514
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 872f02c..3838356 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -888,7 +888,7 @@ void cmTarget::GetTllSignatureTraces(std::ostream& s, TLLSignature sig) const
cmListFileContext lfc = cmd.second;
lfc.FilePath = cmDir.ConvertToRelPathIfNotContained(
impl->Makefile->GetState()->GetSourceDirectory(), lfc.FilePath);
- s << " * " << lfc << std::endl;
+ s << " * " << lfc << '\n';
}
}
}