| 521 | }; |
| 522 | |
| 523 | void write_header(Writer& os, int count, bool shapeless) { |
| 524 | serialize(os, std::string(version())); |
| 525 | serialize(os, count); |
| 526 | serialize(os, shapeless); |
| 527 | } |
| 528 | |
| 529 | // A struct to hold and retrieve the graphs that are exported / imported |
| 530 | struct FunctionTable { |
no test coverage detected