Remove uneeded warning.

GitOrigin-RevId: 63933b5e7ae003e350c52cc9758b844cebc2b961
This commit is contained in:
levlam 2018-12-27 04:41:47 +03:00
parent 5182709012
commit 9ea321b252
1 changed files with 1 additions and 1 deletions

View File

@ -791,7 +791,7 @@ void write_tl(const tl_config &config, tl_outputer &out, const TL_writer &w) {
for (std::size_t function = 0; function < functions_n; function++) {
tl_combinator *t = config.get_function_by_num(function);
if (!w.is_combinator_supported(t)) {
std::fprintf(stderr, "Function %s is too hard to store\n", t->name.c_str());
// std::fprintf(stderr, "Function %s is too hard to store\n", t->name.c_str());
continue;
}