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
datastorm/cpp/test/DataStorm/config/Writer.cpp
Line 304 in fba29e6
Unless I'm mistaken the call to move(topic) is bogus, as it is also used in makeSingleKeyWriter(topic, "elem")
move(topic)
makeSingleKeyWriter(topic, "elem")
The text was updated successfully, but these errors were encountered:
we can do
auto singleKeyWriter = makeSingleKeyWriter(topic, "elem"); w.emplace_back( std::move(holder), std::move(node), std::move(topic), std::move(singleKeyWriter));
Sorry, something went wrong.
No branches or pull requests
datastorm/cpp/test/DataStorm/config/Writer.cpp
Line 304 in fba29e6
Unless I'm mistaken the call to
move(topic)
is bogus, as it is also used inmakeSingleKeyWriter(topic, "elem")
The text was updated successfully, but these errors were encountered: