| 45 | } type = Normal; |
| 46 | |
| 47 | ProjectInfo(std::string name, std::string source_path, Type t = Normal) |
| 48 | : name(std::move(name)), source_path(std::move(source_path)), type(t) {} |
| 49 | ProjectInfo(std::string name, std::string source_path, std::string rev) |
| 50 | : name(std::move(name)), source_path(std::move(source_path)), revision(std::move(rev)) {} |
| 51 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected