summaryrefslogtreecommitdiff
path: root/src/iterator.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-07-27 21:35:54 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-07-27 21:35:54 -0700
commit62cb38bf8a826125fba0034221343aa70dd3d415 (patch)
tree67348fa88068e1fdb2fca04d74c0ce60072bd280 /src/iterator.h
parentaca7161e53ec40f6979d024d84afeb36fa911292 (diff)
Use clang-format, llvm style, for formatting.
* Reformatted all source files. * Added 'format' target to Makefile. * Removed 'astyle' target. * Updated .editorconfig.
Diffstat (limited to 'src/iterator.h')
-rw-r--r--src/iterator.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/iterator.h b/src/iterator.h
index 027b10b..9c6bca6 100644
--- a/src/iterator.h
+++ b/src/iterator.h
@@ -8,14 +8,14 @@ extern "C" {
#include "cmark.h"
typedef struct {
- cmark_event_type ev_type;
- cmark_node *node;
+ cmark_event_type ev_type;
+ cmark_node *node;
} cmark_iter_state;
struct cmark_iter {
- cmark_node *root;
- cmark_iter_state cur;
- cmark_iter_state next;
+ cmark_node *root;
+ cmark_iter_state cur;
+ cmark_iter_state next;
};
#ifdef __cplusplus