We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This function can clearly be optimized, once we have enough memory to store something we can exit the loop. IOW, the loop condition should be:
for (auto it = stored_map.begin(); it != stored_map.end() && !have_enough_memory_to_store_whatever_called_me;)
libnetflow9/src/storage.cpp
Lines 46 to 68 in 3d74939
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This function can clearly be optimized, once we have enough memory to store something we can exit the loop. IOW, the loop condition should be:
libnetflow9/src/storage.cpp
Lines 46 to 68 in 3d74939
The text was updated successfully, but these errors were encountered: