-
Notifications
You must be signed in to change notification settings - Fork 94
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
Add --queryformat, --requires, --provides, --conflicts .. options #318
Conversation
std::set<std::string> output; | ||
for (auto package : pkgs) { | ||
std::visit( | ||
[&output, &package](auto && getter_func) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is rvalue reference needed here? Wouldn't (const auto & getter_func)
do?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, updated, thanks. 👍
Did you investigate the rawhide build error? Is it something that can be fixed on our side? |
Not yet, sorry, I didn't get to it so far. |
This library can be used from other places like `libdnf-cli`, it is not speicfic to `libdnf`.
I have updated the PR to not use the custom fmt formatter for |
Thank you very much! |
For #122
Implement
--queryformat
and--requires
,--provides
, ... options.