Skip to content
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

sync with eclipse-ecal #53

Merged
merged 1 commit into from
Apr 3, 2024
Merged

Conversation

rex-schilasky
Copy link
Contributor

No description provided.

Copy link

@github-actions github-actions bot left a 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

@@ -137,6 +137,8 @@ namespace eCAL
}

std::string error_s;
CProtoDynDecoder dyn_decoder;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: variable 'dyn_decoder' is not initialized [cppcoreguidelines-init-variables]

Suggested change
CProtoDynDecoder dyn_decoder;
CProtoDynDecoder dyn_decoder = 0;


private:
CServiceClientImpl();

public:
~CServiceClientImpl();

bool Create(const std::string& service_name_);
bool Create(const std::string& service_name_, const ServiceMethodInformationMapT& method_information_map_);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

warning: function 'eCAL::CServiceClientImpl::Create' has a definition with different parameter names [readability-inconsistent-declaration-parameter-name]

    bool Create(const std::string& service_name_, const ServiceMethodInformationMapT& method_information_map_);
         ^
Additional context

ecal/core/src/service/ecal_service_client_impl.cpp:68: the definition seen here

  bool CServiceClientImpl::Create(const std::string& service_name_, const ServiceMethodInformationMapT& methods_information_map_)
                           ^

ecal/core/src/service/ecal_service_client_impl.h:51: differing parameters are named here: ('method_information_map_'), in definition: ('methods_information_map_')

    bool Create(const std::string& service_name_, const ServiceMethodInformationMapT& method_information_map_);
         ^

@rex-schilasky rex-schilasky merged commit 833199e into main Apr 3, 2024
82 checks passed
@rex-schilasky rex-schilasky deleted the sync-with-eclipse-ecal-2024-04-03 branch April 3, 2024 18:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant