Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ext/lexbor/lexbor/core/base.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2024 Alexander Borisov
* Copyright (C) 2018-2025 Alexander Borisov
*
* Author: Alexander Borisov <[email protected]>
*/
Expand All @@ -26,8 +26,8 @@ extern "C" {
#include "lexbor/core/types.h"
#include "lexbor/core/lexbor.h"

#define LEXBOR_VERSION_MAJOR 1
#define LEXBOR_VERSION_MINOR 8
#define LEXBOR_VERSION_MAJOR 2
#define LEXBOR_VERSION_MINOR 0
#define LEXBOR_VERSION_PATCH 0

#define LEXBOR_VERSION_STRING LEXBOR_STRINGIZE(LEXBOR_VERSION_MAJOR) "." \
Expand Down
4 changes: 0 additions & 4 deletions ext/lexbor/lexbor/core/dobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@ LXB_API lexbor_dobject_t *
lexbor_dobject_destroy(lexbor_dobject_t *dobject, bool destroy_self);


LXB_API uint8_t *
lexbor_dobject_init_list_entries(lexbor_dobject_t *dobject, size_t pos);


LXB_API void *
lexbor_dobject_alloc(lexbor_dobject_t *dobject);

Expand Down
1 change: 0 additions & 1 deletion ext/lexbor/lexbor/dom/interfaces/document_type.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ extern "C" {
#include "lexbor/dom/interfaces/document.h"
#include "lexbor/dom/interfaces/node.h"
#include "lexbor/dom/interfaces/attr.h"
#include "lexbor/dom/interfaces/document_type.h"


struct lxb_dom_document_type {
Expand Down
Loading