Skip to content

Commit 6fd141a

Browse files
committed
Fixes #258: ("syntax error in interprocess/segment_manager.hpp")
1 parent ca75618 commit 6fd141a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/interprocess/segment_manager.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ class segment_manager
10521052
return ipcdetail::null_or_bad_alloc<object_type>(dothrow);
10531053

10541054
front_space = block_header_t::template front_space_with_header<t_alignment, index_data_t>();
1055-
hdr = block_header_t::template from_first_header(reinterpret_cast<index_data_t*>((void*)((char*)buffer_ptr + front_space)));
1055+
hdr = block_header_t::from_first_header(reinterpret_cast<index_data_t*>((void*)((char*)buffer_ptr + front_space)));
10561056
}
10571057
else{
10581058
const size_type total_size = block_info.template total_named_size<t_alignment, CharT>(namelen);

0 commit comments

Comments
 (0)