summaryrefslogtreecommitdiffstats
path: root/src/clparser.cc
Commit message (Collapse)AuthorAgeFilesLines
* Add 'using namespace std;' to all cc files to prepare for removing it from ↵Michael Jones2020-09-301-0/+2
| | | | header files
* Fix for reviewTakuto Ikuta2017-05-091-2/+3
|
* Make clparser fastertikuta2017-05-081-1/+10
| | | | | | | | | | This patch improves perfromance of clparser. * Reduce the number of calling GetFullPathName. * Use StringPiece for Split and Join. * Add EqualsCaseInsensitive for StringPiece not to generate new string instance. * Add some utility member in StringPiece class.
* Allow more path componentsDaniel Weber2016-08-221-1/+1
| | | | | | | - 60 instead of 30 path components - 64 instead of 32 backslashes in a path (windows only) Issue: 1161
* Make deps=msvc experimentally available on non-Windows.Nico Weber2016-04-061-0/+116
This makes it possible to run most of the clparser tests on non-Windows, and is potentially useful for cross-compiling on non-Windows hosts. Also, the manual didn't document this as Windows-only previously. If you use this on non-Windows, please let me know, else I might undo this change again in the future.