summaryrefslogtreecommitdiffstats
path: root/src/clparser_test.cc
Commit message (Collapse)AuthorAgeFilesLines
* CLParser: Don't filter filename lines after seeing /showIncludesHans Wennborg2021-06-251-0/+11
| | | | | | | | | The /showIncludes output always comes after cl.exe echos the filename, so there is no need to filter out filename lines afterwards. This makes it less likely that CLParser will "over filter" the compiler output. For example, using the -H flag with clang-cl may lead to output lines ending in .cc, which are not supposed to be filtered out.
* Add 'using namespace std;' to all cc files to prepare for removing it from ↵Michael Jones2020-09-301-0/+2
| | | | header files
* Make deps=msvc experimentally available on non-Windows.Nico Weber2016-04-061-0/+117
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.