From 355853c24e92320d54435586c738c483f046f917 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Mon, 6 Apr 2015 06:43:08 -0700 Subject: [PATCH] Remove indent(1) since it barfs on some C99/C11 constructs --- modules/compiler_vm/languages/_c_base.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/compiler_vm/languages/_c_base.pm b/modules/compiler_vm/languages/_c_base.pm index c1b4aeb6..0372baa3 100755 --- a/modules/compiler_vm/languages/_c_base.pm +++ b/modules/compiler_vm/languages/_c_base.pm @@ -85,7 +85,6 @@ sub pretty_format { print $fh $code; close $fh; - system("indent", "-kr", $self->{sourcefile}); system("astyle", "-A3 -UHpnfq", $self->{sourcefile}); open $fh, "<$self->{sourcefile}" or die "Couldn't read $self->{sourcefile}: $!";