Skip to content

Commit

Permalink
subscription: Change fix pointer public type definition for STL compa…
Browse files Browse the repository at this point in the history
…tible iterator
  • Loading branch information
ThomasDebrunner committed Oct 30, 2023
1 parent ace6b68 commit 5a317f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ulog_cpp/subscription.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class SubscriptionIterator {
using iterator_category = std::random_access_iterator_tag; // NOLINT(*-identifier-naming)
using value_type = TypedDataView; // NOLINT(*-identifier-naming)
using difference_type = std::ptrdiff_t; // NOLINT(*-identifier-naming)
using Pointer = TypedDataView*; // NOLINT(*-identifier-naming)
using pointer = TypedDataView*; // NOLINT(*-identifier-naming)
using reference = TypedDataView&; // NOLINT(*-identifier-naming)

TypedDataView operator*() { return TypedDataView(*_it, *_message_format); }
Expand Down

0 comments on commit 5a317f2

Please sign in to comment.