diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-24 10:32:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-24 10:32:50 +0200 |
commit | bb4f9e6498ba715911f83e0dc221a5b1b86baf51 (patch) | |
tree | 021007995d476770b6dced459a770712baa8ea72 /build/diagnostics.cxx | |
parent | 3c57a25a4d6a80301ece82ab33f1394e34f8b873 (diff) |
Further test module development
Diffstat (limited to 'build/diagnostics.cxx')
-rw-r--r-- | build/diagnostics.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/diagnostics.cxx b/build/diagnostics.cxx index f12119c..a254860 100644 --- a/build/diagnostics.cxx +++ b/build/diagnostics.cxx @@ -160,7 +160,12 @@ namespace build print_process (const char* const* args, size_t n) { diag_record r (text); + print_process (r, args, n); + } + void + print_process (diag_record& r, const char* const* args, size_t n) + { size_t m (0); const char* const* p (args); do |