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

DataStorm doc & impl comments #3204

Merged
merged 3 commits into from
Nov 27, 2024

Conversation

pepone
Copy link
Member

@pepone pepone commented Nov 27, 2024

This PR is a first step in improving the documentation for DataStorm implementation.

@@ -105,8 +105,7 @@ SessionI::announceTopics(TopicInfoSeq topics, bool, const Ice::Current&)
}

// Reap un-visited topics
auto p = _topics.begin();
while (p != _topics.end())
for (auto p = _topics.begin(); p != _topics.end();)
Copy link
Member

Choose a reason for hiding this comment

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

I find this 'for' loop with the ++ somewhere else pretty odd.

Copy link
Member Author

Choose a reason for hiding this comment

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

Ok, let's keep the while loop.

@pepone pepone merged commit f5f8aa9 into zeroc-ice:main Nov 27, 2024
19 checks passed
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.

2 participants