diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2014-11-13 11:17:08 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2014-11-13 11:17:08 -0800 |
commit | 5a8f1acf888c60463e7b418d55c1a5d26b3799f1 (patch) | |
tree | 21286ad596267444ed7eca2f036bc1cb295c44d9 /src/main.c | |
parent | 5cbede7a725b8b72779a5a4bd38d49a2d01fc022 (diff) |
Moved the timing macros to get finer-grained information.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -28,9 +28,7 @@ static void print_document(node_block *document, bool ast) void parse_and_render(node_block *document, FILE *fp, bool ast) { - start_timer(); document = cmark_parse_file(fp); - end_timer("cmark_parse_file"); start_timer(); print_document(document, ast); end_timer("print_document"); |