Skip to content

Commit

Permalink
python bindings fixes (#2319)
Browse files Browse the repository at this point in the history
* Refs 11914. Need a class name to refer to retcodes

Signed-off-by: Iker Luengo <ikerluengo@eprosima.com>

* Refs 11914. FlowControllerDescriptorList type has to be public

Signed-off-by: Iker Luengo <ikerluengo@eprosima.com>
  • Loading branch information
IkerLuengo authored Nov 29, 2021
1 parent 9b21481 commit e3b56eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/fastdds/dds/domain/qos/DomainParticipantQos.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ namespace dds {
*/
class DomainParticipantQos
{
public:

//! User defined flow controllers to use alongside.
//! @since 2.4.0
using FlowControllerDescriptorList = std::vector<std::shared_ptr<fastdds::rtps::FlowControllerDescriptor>>;

public:

/**
* @brief Constructor
*/
Expand Down
2 changes: 1 addition & 1 deletion include/fastrtps/types/TypesBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ class RTPS_DllAPI ReturnCode_t

public:

enum
enum ReturnCodeValue
{
RETCODE_OK = 0,
RETCODE_ERROR = 1,
Expand Down

0 comments on commit e3b56eb

Please sign in to comment.