Single include generator now handles spaces between # and include

This commit is contained in:
Phil Nash 2017-02-22 08:05:31 +00:00
parent d2a59ad37b
commit 2e08bfe9cc
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ from scriptCommon import catchPath
from releaseCommon import Version
includesParser = re.compile( r'\s*#include\s*"(.*)"' )
includesParser = re.compile( r'\s*#\s*include\s*"(.*)"' )
guardParser = re.compile( r'\s*#.*TWOBLUECUBES_CATCH_.*_INCLUDED')
defineParser = re.compile( r'\s*#define')
ifParser = re.compile( r'\s*#ifndef TWOBLUECUBES_CATCH_.*_INCLUDED')