-
Notifications
You must be signed in to change notification settings - Fork 46
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
Standardize command-line parameters #59
Comments
Bump |
any opinion on which is better, underscore or dash? Does a standard exist for command line options in general? |
Dashes are used in unix land and don't require holding the shift key :). While we're on the subject, specifying user parameters through tw_optdef spits out the warning "missing braces around initializer" (via -Wmissing-braces, enabled by -Wall), caused by the TWOPT_END macro not being within braces. I think we had this fix in before, but it may have been lost in the SR transition? From: Elsa Gonsiorowski <notifications@github.commailto:notifications@github.com> any opinion on which is better, underscore or dash? Does a standard exist for command line options? — |
When choosing command line options for ROSS, there are several options that have a logical space in them, such as "gvt interval", "clock rate", "lz4 knob", "avl size" and others. However, the flags are not consistent. Some flags have an underscore, while others have a dash. It would be great if they all used one or the other.
The text was updated successfully, but these errors were encountered: