| 130 | } |
| 131 | |
| 132 | static bool ParseError(const char *Err, const std::string &Line) { |
| 133 | Printf("DataFlowTrace: parse error: %s: Line: %s\n", Err, Line.c_str()); |
| 134 | return false; |
| 135 | } |
| 136 | |
| 137 | // TODO(metzman): replace std::string with std::string_view for |
| 138 | // better performance. Need to figure our how to use string_view on Windows. |
no test coverage detected