Browse Source

Further C++ compatibility changes

master
Nolan Clark 9 years ago
parent
commit
6e3df59596
2 changed files with 3 additions and 2 deletions
  1. +1
    -1
      src/xml.c
  2. +2
    -1
      src/xml.h

+ 1
- 1
src/xml.c View File

@@ -729,7 +729,7 @@ struct xml_document* xml_open_document(FILE* source) {
/** /**
* [PUBLIC API] * [PUBLIC API]
*/ */
void xml_document_free(struct xml_document* document, _Bool free_buffer) {
void xml_document_free(struct xml_document* document, bool free_buffer) {
xml_node_free(document->root); xml_node_free(document->root);


if (free_buffer) { if (free_buffer) {


+ 2
- 1
src/xml.h View File

@@ -29,6 +29,7 @@
*/ */
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <stdbool.h>


#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
@@ -86,7 +87,7 @@ struct xml_document* xml_open_document(FILE* source);
* @param free_buffer iff true the internal buffer supplied via xml_parse_buffer * @param free_buffer iff true the internal buffer supplied via xml_parse_buffer
* will be freed with the `free` system call * will be freed with the `free` system call
*/ */
void xml_document_free(struct xml_document* document, _Bool free_buffer);
void xml_document_free(struct xml_document* document, bool free_buffer);




/** /**


Loading…
Cancel
Save