Skip to content
Snippets Groups Projects
Unverified Commit 9d53994c authored by zenker's avatar zenker Committed by GitHub
Browse files

Remove unused parameter

parent f5d9318d
No related branches found
No related tags found
No related merge requests found
......@@ -211,7 +211,7 @@ namespace logging {
*/
class LoggingModule : public ctk::ApplicationModule {
private:
ctk::VariableNetworkNode getAccessorPair(const ctk::RegisterPath& namePrefix, const std::string& name);
ctk::VariableNetworkNode getAccessorPair(const ctk::RegisterPath& namePrefix);
/** Map of VariableGroups required to build the hierarchies. The key it the
* full path name. */
......
......@@ -259,7 +259,7 @@ void LoggingModule::mainLoop() {
}
}
ctk::VariableNetworkNode LoggingModule::getAccessorPair(const ctk::RegisterPath& namePrefix, const std::string& name) {
ctk::VariableNetworkNode LoggingModule::getAccessorPair(const ctk::RegisterPath& namePrefix) {
auto it = std::find_if(sources.begin(), sources.end(),
boost::bind(&MessageSource::sendingModule, boost::placeholders::_1) == (std::string)namePrefix);
if(it == sources.end()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment