about summary refs log tree commit diff stats
path: root/cpp/makefile
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-15 10:30:31 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-15 10:30:31 -0700
commit8d09d030312098cb314619b0b5d0fc08e78e5562 (patch)
tree50c7f8162cbea78f431d2de532cd7b220e249bed /cpp/makefile
parent7a9b05fa66c97ef912e77e9c7618f4ef198636d0 (diff)
downloadmu-8d09d030312098cb314619b0b5d0fc08e78e5562.tar.gz
1067 - no need to indent methods anymore
Diffstat (limited to 'cpp/makefile')
-rw-r--r--cpp/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/makefile b/cpp/makefile
index 470c20c0..b062b288 100644
--- a/cpp/makefile
+++ b/cpp/makefile
@@ -22,7 +22,7 @@ test: mu
 	./mu test
 
 function_list: mu.cc
-	@grep -h "^[^ #].*) {" mu.cc |perl -pwe 's/ {.*/;/' > function_list
+	@grep -h "^[^ #].*) {" mu.cc |grep -v ":.*(" |perl -pwe 's/ {.*/;/' > function_list
 	@grep -h "^[[:space:]]*TEST(" mu.cc |perl -pwe 's/^\s*TEST\((.*)\)$$/void test_$$1();/' >> function_list
 
 test_list: mu.cc