Skip to content

Commit

Permalink
Add missing space (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
iMichka committed Jun 30, 2016
1 parent 4a5c391 commit 3df9cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygccxml/parser/source_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def __create_command_line_castxml(self, source_file, xmlfile):
cmd.append('--castxml-cc-gnu ' + self.__config.compiler_path)
else:
# We are using msvc
cmd.append('--castxml-cc-msvc' + self.__config.compiler_path)
cmd.append('--castxml-cc-msvc ' + self.__config.compiler_path)
if 'msvc9' == self.__config.compiler:
cmd.append('-D"_HAS_TR1=0"')
else:
Expand Down

0 comments on commit 3df9cea

Please sign in to comment.