This is an automated email from the ASF dual-hosted git repository.

ibessonov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new 4baed38452 IGNITE-20278 Make binary_tuple_builder fields protected 
instead of private. (#2496)
4baed38452 is described below

commit 4baed38452b3334cb7d92d2531c54152b4d97edc
Author: Dmitriy Zabotlin <arcoli...@users.noreply.github.com>
AuthorDate: Fri Aug 25 10:20:21 2023 +0300

    IGNITE-20278 Make binary_tuple_builder fields protected instead of private. 
(#2496)
---
 modules/platforms/cpp/ignite/tuple/binary_tuple_builder.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/platforms/cpp/ignite/tuple/binary_tuple_builder.h 
b/modules/platforms/cpp/ignite/tuple/binary_tuple_builder.h
index fcc94d0ddf..7e15673606 100644
--- a/modules/platforms/cpp/ignite/tuple/binary_tuple_builder.h
+++ b/modules/platforms/cpp/ignite/tuple/binary_tuple_builder.h
@@ -58,6 +58,7 @@ namespace ignite {
  * 5. Finally, the resulting binary tuple is obtained with the @ref build call.
  */
 class binary_tuple_builder {
+protected:
     const tuple_num_t element_count; /**< Total number of elements. */
 
     tuple_num_t element_index; /**< Index of the next element to add. */

Reply via email to