Cleanup: use better default name for unknown parameter

The `<` and `>` don't work well when the name is inserted into a .dot graph.
This commit is contained in:
Jacques Lucke 2023-03-30 18:33:09 +02:00
parent bdc3f1581d
commit 55d473ee40

@ -250,7 +250,7 @@ struct Output {
*/
class LazyFunction {
protected:
const char *debug_name_ = "<unknown>";
const char *debug_name_ = "unknown";
Vector<Input> inputs_;
Vector<Output> outputs_;
/**