Skip to content

Commit

Permalink
fix(autoware_pointcloud_preprocessor): fix functionConst (#8280)
Browse files Browse the repository at this point in the history
fix:functionConst

Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp>
  • Loading branch information
kobayu858 committed Aug 4, 2024
1 parent f3dfbaf commit 5fd4b2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,7 @@ class Table
map.deallocate(mData);
}

void destroyDoNotDeallocate() noexcept { mData->~value_type(); }
void destroyDoNotDeallocate() const noexcept { mData->~value_type(); }

value_type const * operator->() const noexcept { return mData; }

Expand Down

0 comments on commit 5fd4b2a

Please sign in to comment.