Skip to content

Commit

Permalink
Fix using declaration
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
  • Loading branch information
jjerphan committed Apr 9, 2024
1 parent 7115b76 commit 75ec2a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sparrow/fixed_size_layout.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace sparrow
using self_type = fixed_size_layout<T>;
using inner_value_type = T;
using inner_reference = inner_value_type&;
using inner_const_reference = const inner_reference;
using inner_const_reference = const inner_value_type&;
using bitmap_type = array_data::bitmap_type;
using bitmap_reference = typename bitmap_type::reference;
using bitmap_const_reference = typename bitmap_type::const_reference;
Expand Down

0 comments on commit 75ec2a7

Please sign in to comment.