Skip to content

Commit 89c4fe4

Browse files
committed
+4
1 parent 9124375 commit 89c4fe4

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

VERSION.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "git_describe": "v0.14.1-258-g1958fdb6", "git_timestamp": "2026-01-08T00:28:56+03:00", "git_tree": "a721ea58926783192775c2baaeceba2da7acd8c8", "git_commit": "1958fdb6d3903cee6250e55a78de747f0b3e567b", "semver": "0.14.1.258" }
1+
{ "git_describe": "v0.14.1-259-g6588b93c", "git_timestamp": "2026-01-08T01:50:59+03:00", "git_tree": "067cbded6a2333c063ca1799951f9c89782a0979", "git_commit": "6588b93cb0d5b0c7761c64fd1f4849c9e2efb571", "semver": "0.14.1.259" }

mdbx.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#define xMDBX_ALLOY 1 /* alloyed build */
66

7-
#define MDBX_BUILD_SOURCERY f389497cabfd3766071dd4808610d9dbe1ab2830cc0154117d92c74f5308675d_v0_14_1_258_g1958fdb6
7+
#define MDBX_BUILD_SOURCERY cb9bc45f9c03ba6b4400fecf050c95cd675d7235fccc342321122e97b682fc23_v0_14_1_259_g6588b93c
88

99
#define LIBMDBX_INTERNALS
1010
#define MDBX_DEPRECATED
@@ -40428,10 +40428,10 @@ __dll_export
4042840428
0,
4042940429
14,
4043040430
1,
40431-
258,
40431+
259,
4043240432
"", /* pre-release suffix of SemVer
40433-
0.14.1.258 */
40434-
{"2026-01-08T00:28:56+03:00", "a721ea58926783192775c2baaeceba2da7acd8c8", "1958fdb6d3903cee6250e55a78de747f0b3e567b", "v0.14.1-258-g1958fdb6"},
40433+
0.14.1.259 */
40434+
{"2026-01-08T01:50:59+03:00", "067cbded6a2333c063ca1799951f9c89782a0979", "6588b93cb0d5b0c7761c64fd1f4849c9e2efb571", "v0.14.1-259-g6588b93c"},
4043540435
sourcery};
4043640436

4043740437
__dll_export

mdbx.c++

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// \author Леонид Юрьев aka Leonid Yuriev <leo@yuriev.ru> \date 2015-2026
33
/* clang-format off */
44

5-
#define MDBX_BUILD_SOURCERY f389497cabfd3766071dd4808610d9dbe1ab2830cc0154117d92c74f5308675d_v0_14_1_258_g1958fdb6
5+
#define MDBX_BUILD_SOURCERY cb9bc45f9c03ba6b4400fecf050c95cd675d7235fccc342321122e97b682fc23_v0_14_1_259_g6588b93c
66

77
#define LIBMDBX_INTERNALS
88
#define MDBX_DEPRECATED

mdbx.h++

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2638,6 +2638,12 @@ public:
26382638
const slice &slice() const noexcept { return *this; }
26392639
};
26402640

2641+
MDBX_EXTERN_API_TEMPLATE(LIBMDBX_API_TYPE, buffer<legacy_allocator>);
2642+
2643+
#if MDBX_CXX_HAS_POLYMORPHIC_ALLOCATOR
2644+
MDBX_EXTERN_API_TEMPLATE(LIBMDBX_API_TYPE, buffer<polymorphic_allocator>);
2645+
#endif /* MDBX_CXX_HAS_POLYMORPHIC_ALLOCATOR */
2646+
26412647
template <class ALLOCATOR, class CAPACITY_POLICY, MDBX_CXX20_CONCEPT(MutableByteProducer, PRODUCER)>
26422648
inline buffer<ALLOCATOR, CAPACITY_POLICY> make_buffer(PRODUCER &producer, const ALLOCATOR &alloc) {
26432649
if (MDBX_LIKELY(!producer.is_empty()))
@@ -2682,12 +2688,6 @@ inline string<ALLOCATOR> make_string(const PRODUCER &producer, const ALLOCATOR &
26822688
return result;
26832689
}
26842690

2685-
MDBX_EXTERN_API_TEMPLATE(LIBMDBX_API_TYPE, buffer<legacy_allocator>);
2686-
2687-
#if MDBX_CXX_HAS_POLYMORPHIC_ALLOCATOR
2688-
MDBX_EXTERN_API_TEMPLATE(LIBMDBX_API_TYPE, buffer<polymorphic_allocator>);
2689-
#endif /* MDBX_CXX_HAS_POLYMORPHIC_ALLOCATOR */
2690-
26912691
/// \brief Combines data slice with boolean flag to represent result of certain operations.
26922692
struct value_result {
26932693
slice value;

mdbx_chk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/// \copyright SPDX-License-Identifier: Apache-2.0
1919
/// \author Леонид Юрьев aka Leonid Yuriev <leo@yuriev.ru> \date 2015-2026
2020

21-
#define MDBX_BUILD_SOURCERY f389497cabfd3766071dd4808610d9dbe1ab2830cc0154117d92c74f5308675d_v0_14_1_258_g1958fdb6
21+
#define MDBX_BUILD_SOURCERY cb9bc45f9c03ba6b4400fecf050c95cd675d7235fccc342321122e97b682fc23_v0_14_1_259_g6588b93c
2222

2323
#define LIBMDBX_INTERNALS
2424
#define MDBX_DEPRECATED

mdbx_copy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/// \copyright SPDX-License-Identifier: Apache-2.0
1919
/// \author Леонид Юрьев aka Leonid Yuriev <leo@yuriev.ru> \date 2015-2026
2020

21-
#define MDBX_BUILD_SOURCERY f389497cabfd3766071dd4808610d9dbe1ab2830cc0154117d92c74f5308675d_v0_14_1_258_g1958fdb6
21+
#define MDBX_BUILD_SOURCERY cb9bc45f9c03ba6b4400fecf050c95cd675d7235fccc342321122e97b682fc23_v0_14_1_259_g6588b93c
2222

2323
#define LIBMDBX_INTERNALS
2424
#define MDBX_DEPRECATED

mdbx_drop.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/// \copyright SPDX-License-Identifier: Apache-2.0
1919
/// \author Леонид Юрьев aka Leonid Yuriev <leo@yuriev.ru> \date 2015-2026
2020

21-
#define MDBX_BUILD_SOURCERY f389497cabfd3766071dd4808610d9dbe1ab2830cc0154117d92c74f5308675d_v0_14_1_258_g1958fdb6
21+
#define MDBX_BUILD_SOURCERY cb9bc45f9c03ba6b4400fecf050c95cd675d7235fccc342321122e97b682fc23_v0_14_1_259_g6588b93c
2222

2323
#define LIBMDBX_INTERNALS
2424
#define MDBX_DEPRECATED

mdbx_dump.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/// \copyright SPDX-License-Identifier: Apache-2.0
1919
/// \author Леонид Юрьев aka Leonid Yuriev <leo@yuriev.ru> \date 2015-2026
2020

21-
#define MDBX_BUILD_SOURCERY f389497cabfd3766071dd4808610d9dbe1ab2830cc0154117d92c74f5308675d_v0_14_1_258_g1958fdb6
21+
#define MDBX_BUILD_SOURCERY cb9bc45f9c03ba6b4400fecf050c95cd675d7235fccc342321122e97b682fc23_v0_14_1_259_g6588b93c
2222

2323
#define LIBMDBX_INTERNALS
2424
#define MDBX_DEPRECATED

mdbx_load.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/// \copyright SPDX-License-Identifier: Apache-2.0
1919
/// \author Леонид Юрьев aka Leonid Yuriev <leo@yuriev.ru> \date 2015-2026
2020

21-
#define MDBX_BUILD_SOURCERY f389497cabfd3766071dd4808610d9dbe1ab2830cc0154117d92c74f5308675d_v0_14_1_258_g1958fdb6
21+
#define MDBX_BUILD_SOURCERY cb9bc45f9c03ba6b4400fecf050c95cd675d7235fccc342321122e97b682fc23_v0_14_1_259_g6588b93c
2222

2323
#define LIBMDBX_INTERNALS
2424
#define MDBX_DEPRECATED

mdbx_stat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/// \copyright SPDX-License-Identifier: Apache-2.0
1919
/// \author Леонид Юрьев aka Leonid Yuriev <leo@yuriev.ru> \date 2015-2026
2020

21-
#define MDBX_BUILD_SOURCERY f389497cabfd3766071dd4808610d9dbe1ab2830cc0154117d92c74f5308675d_v0_14_1_258_g1958fdb6
21+
#define MDBX_BUILD_SOURCERY cb9bc45f9c03ba6b4400fecf050c95cd675d7235fccc342321122e97b682fc23_v0_14_1_259_g6588b93c
2222

2323
#define LIBMDBX_INTERNALS
2424
#define MDBX_DEPRECATED

0 commit comments

Comments
 (0)