Fix issue with INO to CPP converter and multiline strings

This commit is contained in:
Ivan Kravets
2017-06-01 15:14:52 +03:00
parent aed6d9a91b
commit 6502cf5552

View File

@ -115,7 +115,7 @@ class InoToCPPConverter(object):
elif stropen: elif stropen:
newlines[len(newlines) - 1] += line[:-1] newlines[len(newlines) - 1] += line[:-1]
continue continue
elif stropen and line.endswith('";'): elif stropen and line.endswith(('",', '";')):
newlines[len(newlines) - 1] += line newlines[len(newlines) - 1] += line
stropen = False stropen = False
newlines.append('#line %d "%s"' % newlines.append('#line %d "%s"' %