summaryrefslogtreecommitdiffstats
path: root/Source/cmExtraCodeBlocksGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-05-09 13:01:08 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-05-09 13:01:08 (GMT)
commit7ecd9648a166ecf500badfd0c4eab77a15101c35 (patch)
tree29dba5c66e0b210f846e64b64f2af21e8fcddc1e /Source/cmExtraCodeBlocksGenerator.cxx
parent488b82f8ccca4de8a052b94ddf2be131682561cb (diff)
parentafca373510b5303d55fde17085718323ea9b2cb9 (diff)
downloadCMake-7ecd9648a166ecf500badfd0c4eab77a15101c35.zip
CMake-7ecd9648a166ecf500badfd0c4eab77a15101c35.tar.gz
CMake-7ecd9648a166ecf500badfd0c4eab77a15101c35.tar.bz2
Merge topic 'clang-format-prep'
afca3735 Help clang-format wrap after braces on long initializer lists 85425a3e Move comments off of class access specifier lines 64b55203 Isolate formatted streaming blocks with clang-format off/on
Diffstat (limited to 'Source/cmExtraCodeBlocksGenerator.cxx')
-rw-r--r--Source/cmExtraCodeBlocksGenerator.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx
index f6be583..dc50b3e 100644
--- a/Source/cmExtraCodeBlocksGenerator.cxx
+++ b/Source/cmExtraCodeBlocksGenerator.cxx
@@ -569,10 +569,12 @@ std::string cmExtraCodeBlocksGenerator::CreateDummyTargetFile(
cmGeneratedFileStream fout(filename.c_str());
if(fout)
{
+ /* clang-format off */
fout << "# This is a dummy file for the OBJECT library "
<< target->GetName()
<< " for the CMake CodeBlocks project generator.\n"
<< "# Don't edit, this file will be overwritten.\n";
+ /* clang-format on */
}
return filename;
}