mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 16:22:35 +01:00
modules/console: Add a demangle cmd.
This commit is contained in:
parent
34c38b854f
commit
77c7b43eea
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue