diff options
Diffstat (limited to 'BuildTools/FixIncludes.py')
-rwxr-xr-x | BuildTools/FixIncludes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BuildTools/FixIncludes.py b/BuildTools/FixIncludes.py index 8984944..e532464 100755 --- a/BuildTools/FixIncludes.py +++ b/BuildTools/FixIncludes.py @@ -155,3 +155,3 @@ for line in content[headerStart:headerEnd]: if containsComplexPreprocessorDirectives: - print "Cannot format headers containing preprocessor #if, #pragma, #define or #undef statements!" + print("Cannot format headers containing preprocessor #if, #pragma, #define or #undef statements!") exit(1) @@ -160,3 +160,3 @@ if filename_base.endswith(".h"): if not HeaderType.PRAGMA_ONCE in headerGroups: - print "Missing #pragma once!" + print("Missing #pragma once!") exit(2) |