0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 21:28:53 +02:00

modules/console: Add a demangle cmd.

This commit is contained in:
Jason Volk 2019-04-16 16:33:18 -07:00
parent 34c38b854f
commit 77c7b43eea

View file

@ -466,6 +466,13 @@ console_cmd__debug(opt &out, const string_view &line)
}
}
bool
console_cmd__demangle(opt &out, const string_view &line)
{
out << ircd::demangle(line) << std::endl;
return true;
}
//
// main
//