summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-11-13 11:17:08 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-11-13 11:17:08 -0800
commit5a8f1acf888c60463e7b418d55c1a5d26b3799f1 (patch)
tree21286ad596267444ed7eca2f036bc1cb295c44d9 /src/main.c
parent5cbede7a725b8b72779a5a4bd38d49a2d01fc022 (diff)
Moved the timing macros to get finer-grained information.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 1e3a6b3..f6d757c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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");