Add a missing newline in wrap_panic() calls.

This commit is contained in:
Ms2ger 2017-02-01 14:45:54 +01:00
parent da89099e26
commit 49ce1332e1

View file

@ -2395,7 +2395,7 @@ class CGAbstractMethod(CGThing):
if self.catchPanic:
body = CGWrapper(CGIndenter(body),
pre="return wrap_panic(panic::AssertUnwindSafe(|| {\n",
post=("""}), %s);""" % ("()" if self.returnType == "void" else "false")))
post=("""\n}), %s);""" % ("()" if self.returnType == "void" else "false")))
return CGWrapper(CGIndenter(body),
pre=self.definition_prologue(),