Skip to content

Commit

Permalink
Apply more suggestions
Browse files Browse the repository at this point in the history
Signed-off-by: tempate <[email protected]>
  • Loading branch information
Tempate committed Nov 6, 2023
1 parent 1f9a662 commit b9d2c47
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class CommonReader : public BaseReader, public fastdds::dds::DataReaderListener
fastdds::dds::DataReaderQos
reckon_reader_qos_() const;

//! Whether a change received should be processed
//! Whether a sample received should be processed
virtual bool should_accept_sample_(
const fastdds::dds::SampleInfo& info) noexcept;

Expand Down
6 changes: 5 additions & 1 deletion ddspipe_yaml/src/cpp/YamlReader_types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -655,10 +655,14 @@ std::ostream& operator <<(
break;

case V_3_1:
case LATEST:
os << VERSION_TAG_V_3_1;
break;

case V_4_0:
case LATEST:
os << VERSION_TAG_V_4_0;
break;

default:
utils::tsnh(STR_ENTRY << "Value of YamlReaderVersion out of enumeration.");
break;
Expand Down

0 comments on commit b9d2c47

Please sign in to comment.