-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
AVRO-4109: [C++] Remove boost::program_options #3286
Conversation
return true; | ||
} | ||
|
||
if (arg == "-V" || arg == "--version") { |
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.
Should we also check if there are any more arguments? For example, if someone type avrogencpp -V -U
, should we just show the version or error out?
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.
avrogencpp -V -U
prints the version without my change. So I think it is consistent with the original behavior.
bc6e466
to
8fed3e0
Compare
Rebased to resolve the conflict. |
What is the purpose of the change
Remove boost::program_options
Verifying this change
This change is a trivial rework / code cleanup without any test coverage.
Documentation