about summary refs log tree commit diff stats
path: root/build4
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-03-14 21:23:40 -0700
committerKartik Agaram <vc@akkartik.com>2019-03-14 21:23:40 -0700
commitf0f16bdf7bb501c93e9bc92f46cc4e0758ae136a (patch)
tree49872c3135b28b9b6a8c9b6ccc977fc1ab70fe2c /build4
parent6e80dc7d4ae59462211252eb4e5581d380eb61e2 (diff)
downloadmu-f0f16bdf7bb501c93e9bc92f46cc4e0758ae136a.tar.gz
5004
Diffstat (limited to 'build4')
-rwxr-xr-xbuild42
1 files changed, 1 insertions, 1 deletions
diff --git a/build4 b/build4
index ab5c4a0b..d92dbfda 100755
--- a/build4
+++ b/build4
@@ -203,7 +203,7 @@ mkdir -p .build
 # auto-generate function declarations, so I can define them in any order
 # functions start out unindented, have all args on the same line, and end in ') {'
 #
-#                                      \/ ignore methods
+#                                      \/ ignore struct/class methods
 grep -h "^[^[:space:]#].*) {$" mu.cc  |grep -v ":.*("  |sed 's/ {.*/;/'  |update .build/function_list
 # auto-generate list of tests to run
 grep -h "^\s*void test_" mu.cc  |sed 's/^\s*void \(.*\)() {.*/\1,/'  |update .build/test_list