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

iox-#2266 Removed warning set but not used #2265

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions iceoryx_posh/source/gateway/toml_gateway_config_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,8 @@ iox::config::TomlGatewayConfigParser::validate(const cpptoml::table& parsedToml)
TomlGatewayConfigParseError::MAXIMUM_NUMBER_OF_ENTRIES_EXCEEDED);
}

uint8_t count = 0;
for (const auto& service : *serviceArray)
{
++count;

auto serviceName = service->get_as<std::string>(GATEWAY_CONFIG_SERVICE_NAME);
auto instance = service->get_as<std::string>(GATEWAY_CONFIG_SERVICE_INSTANCE_NAME);
auto event = service->get_as<std::string>(GATEWAY_CONFIG_SERVICE_EVENT_NAME);
Expand Down
Loading