From c9b6fa4f7c16c52c2308a09bd58e6df008f37ef1 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Mon, 2 Feb 2015 15:29:11 +0100 Subject: [PATCH] interface/python.cc: fix line lengths to 80 columns Reported-by: Andreas Simbuerger Signed-off-by: Sven Verdoolaege --- interface/python.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/interface/python.cc b/interface/python.cc index bb5f7080..0b4c0e28 100644 --- a/interface/python.cc +++ b/interface/python.cc @@ -220,8 +220,8 @@ static void print_callback(QualType type, int arg) for (int i = 0; i < n_arg - 1; ++i) { string arg_type; arg_type = type2python(extract_type(fn->getArgType(i))); - printf(" cb_arg%d = %s(ctx=arg0.ctx, ptr=cb_arg%d)\n", - i, arg_type.c_str(), i); + printf(" cb_arg%d = %s(ctx=arg0.ctx, " + "ptr=cb_arg%d)\n", i, arg_type.c_str(), i); } printf(" try:\n"); printf(" arg%d(", arg); @@ -446,7 +446,8 @@ void isl_class::print(map &classes, set &done) printf(" libc.free(ptr)\n"); printf(" return res\n"); printf(" def __repr__(self):\n"); - printf(" return 'isl.%s(\"%%s\")' %% str(self)\n", p_name.c_str()); + printf(" return 'isl.%s(\"%%s\")' %% str(self)\n", + p_name.c_str()); for (in = methods.begin(); in != methods.end(); ++in) print_method(*in, subclass, super); -- 2.11.4.GIT