mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 08:42:34 +01:00
console: Increase the input buffer; take off stack.
This commit is contained in:
parent
0b226f2633
commit
eec3196ef0
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ try
|
|||
{
|
||||
std::cout << "\n> " << std::flush;
|
||||
|
||||
char buf[1024];
|
||||
thread_local char buf[64_KiB];
|
||||
string_view line;
|
||||
// Suppression scope ends after the command is entered
|
||||
// so the output of the command (if log messages) can be seen.
|
||||
|
|
Loading…
Reference in a new issue