-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CPublisher and CSubscriber member variables private #1842
Conversation
SetID renamed to SetFilterID(s)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
@@ -267,9 +267,9 @@ namespace eCAL | |||
return(true); | |||
} | |||
|
|||
void CDataReader::SetID(const std::set<long long>& id_set_) | |||
void CDataReader::SetFilterIDs(const std::set<long long>& filter_ids_) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: no header providing "std::set" is directly included [misc-include-cleaner]
ecal/core/src/readwrite/ecal_reader.cpp:26:
+ #include <set>
@@ -159,7 +159,7 @@ namespace eCAL | |||
return true; | |||
} | |||
|
|||
size_t CDataWriter::Write(CPayloadWriter& payload_, long long time_, long long id_) | |||
size_t CDataWriter::Write(CPayloadWriter& payload_, long long time_, long long filter_id_) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: no header providing "size_t" is directly included [misc-include-cleaner]
size_t CDataWriter::Write(CPayloadWriter& payload_, long long time_, long long filter_id_)
^
Description
CPublisher
andCSubscriber
: