Skip to content

Commit

Permalink
Fixed exported symbols on ContentFilteredTopic (#2611)
Browse files Browse the repository at this point in the history
* Refs #14260. Fix dll exports on ContentFilteredTopic.

Signed-off-by: Miguel Company <[email protected]>

* Refs #14260. Update versions.md.

Signed-off-by: Miguel Company <[email protected]>

---------

Signed-off-by: Miguel Company <[email protected]>
  • Loading branch information
MiguelCompany authored Jun 14, 2023
1 parent 20c8849 commit dbd3ba7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/fastdds/dds/topic/ContentFilteredTopic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ class ContentFilteredTopic : public TopicDescription

private:

RTPS_DllAPI ContentFilteredTopic(
ContentFilteredTopic(
const std::string& name,
Topic* related_topic,
const std::string& filter_expression,
const std::vector<std::string>& expression_parameters);

public:

RTPS_DllAPI virtual ~ContentFilteredTopic();
virtual ~ContentFilteredTopic();

/**
* @brief Getter for the related topic.
Expand Down Expand Up @@ -128,7 +128,7 @@ class ContentFilteredTopic : public TopicDescription
* @brief Getter for the DomainParticipant
* @return DomainParticipant pointer
*/
DomainParticipant* get_participant() const override;
RTPS_DllAPI DomainParticipant* get_participant() const override;

TopicDescriptionImpl* get_impl() const override;

Expand Down
1 change: 1 addition & 0 deletions versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Forthcoming
* Added Participant ignore local endpoints feature.
* Remove `FASTDDS_STATIC` CMake option.
Please, use `BUILD_SHARED_LIBS=OFF` instead.
* Fixed exported symbols on ContentFilteredTopic (ABI break)

Version 2.10.1
--------------
Expand Down

0 comments on commit dbd3ba7

Please sign in to comment.