Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Do not always strip colored output in verbose mode, fix #1214 | Jan Niklas Hasse | 2018-11-05 | 1 | -0/+5 |
| | |||||
* | Introduce the "console" pool | Peter Collingbourne | 2014-02-03 | 1 | -0/+20 |
| | | | | | | | This is a pre-defined pool with a depth of 1. It has the special property that any task in the pool has direct access to the console. This can be useful for interactive tasks or long-running tasks which produce status updates on the console (such as test suites). | ||||
* | structs not classes. | Thiago Farina | 2013-05-19 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | For some reason that I do not, ninja prefers: struct Foo { Foo(); private: void Blah(); }; Rather than class Foo { public: Foo(); private: void Blah(); }; This catches the last two usages of "class" in the code base. Signed-off-by: Thiago Farina <tfarina@chromium.org> | ||||
* | drop std:: qualifiers on more stl datatypes | Evan Martin | 2013-04-18 | 1 | -2/+3 |
| | | | | We "using namespace std" anywhere we need a std::string or a std::vector. | ||||
* | add ifdef around console_ | Scott Graham | 2013-04-09 | 1 | -0/+2 |
| | |||||
* | fix windows build after depslog | Scott Graham | 2013-04-09 | 1 | -2/+4 |
| | |||||
* | Make LinePrinter members private, add comments. | Nico Weber | 2013-04-09 | 1 | -1/+10 |
| | |||||
* | move printing of new lines into LinePrinter. | Nico Weber | 2013-04-09 | 1 | -0/+2 |
| | |||||
* | move single-line printing to new class | Nico Weber | 2013-04-09 | 1 | -0/+37 |