Note start of .cpp files in single header

This commit is contained in:
Martin Hořeňovský 2017-08-01 22:20:14 +02:00
parent 249bf116e8
commit cde987a92e
1 changed files with 1 additions and 1 deletions

View File

@ -67,6 +67,7 @@ def parseFile( path, filename ):
f = open( os.path.join(path, filename), 'r' )
blanks = 0
write( "// start {0}\n".format( filename ) )
for line in f:
if '// ~*~* CATCH_CPP_STITCH_PLACE *~*~' in line:
insertCpps()
@ -83,7 +84,6 @@ def parseFile( path, filename ):
if not headerFile in seenHeaders:
if headerFile != "tbc_text_format.h" and headerFile != "clara.h":
seenHeaders.add( headerFile )
write( "// #included from: {0}\n".format( header ) )
if headerPath == "internal" and path.endswith("internal/"):
headerPath = ""
sep = ""