summaryrefslogtreecommitdiff
path: root/src/yaml_private.h
diff options
context:
space:
mode:
authorKirill Simonov <xi@resolvent.net>2007-01-08 18:33:55 +0000
committerKirill Simonov <xi@resolvent.net>2007-01-08 18:33:55 +0000
commitc9b74def08ff0fcac2f1466652b432e4c3129b35 (patch)
tree9ef0415a94ff177bb4d21618166dc660d09c310c /src/yaml_private.h
parent01224901943b05fd939158398d1940ac86ce16b8 (diff)
downloadlibyaml-git-c9b74def08ff0fcac2f1466652b432e4c3129b35.tar.gz
Eliminate some warnings and add more doxygen definitions.
Diffstat (limited to 'src/yaml_private.h')
-rw-r--r--src/yaml_private.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/yaml_private.h b/src/yaml_private.h
index 10c4219..6320caf 100644
--- a/src/yaml_private.h
+++ b/src/yaml_private.h
@@ -586,7 +586,7 @@ yaml_queue_extend(void **start, void **head, void **tail, void **end);
#define DOCUMENT_INIT(document,document_nodes_start,document_nodes_end, \
document_version_directive,document_tag_directives_start, \
document_tag_directives_end,document_start_implicit, \
- document_end_implicit,start_mark,end_mark) \
+ document_end_implicit,document_start_mark,document_end_mark) \
(memset(&(document), 0, sizeof(yaml_document_t)), \
(document).nodes.start = (document_nodes_start), \
(document).nodes.end = (document_nodes_end), \
@@ -595,7 +595,9 @@ yaml_queue_extend(void **start, void **head, void **tail, void **end);
(document).tag_directives.start = (document_tag_directives_start), \
(document).tag_directives.end = (document_tag_directives_end), \
(document).start_implicit = (document_start_implicit), \
- (document).end_implicit = (document_end_implicit))
+ (document).end_implicit = (document_end_implicit), \
+ (document).start_mark = (document_start_mark), \
+ (document).end_mark = (document_end_mark))
/*
* Node initializers.