aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/wgetopt.cpp
Commit message (Collapse)AuthorAge
* fixes for cppcheck lint warningsGravatar Kurtis Rader2016-04-04
| | | | | | Refine the linting behavior. Fix several of the, mostly trivial, lint errors.
* remove unused wgetopt() method found by lintingGravatar Kurtis Rader2016-04-02
|
* Remove some unnecessary statics and a silly #define constGravatar ridiculousfish2016-02-27
|
* Remove an unnecessary typecastGravatar ridiculousfish2016-02-10
|
* Remove a stale comment about constGravatar ridiculousfish2016-02-10
|
* Remove const from _wgetopt_internal's argv argumentGravatar Jon Eyolfson2016-02-10
| | | | The argv argument may be modified on calls to exchange within the function and should not be const qualified (it's not true from the caller's point of view).
* Merge branch 'master' into iwyuGravatar David Adam2015-07-26
|
* Eliminate wgetopt global variablesGravatar ridiculousfish2015-07-25
| | | | | Replace them with a new struct wgetopter_t that uses instance variables instead.
* Migrate source files into src/ directoryGravatar ridiculousfish2015-07-24
This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866