0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-06 12:08:56 +02:00

console: Increase the input buffer; take off stack.

This commit is contained in:
Jason Volk 2018-06-06 10:49:50 -07:00
parent 0b226f2633
commit eec3196ef0

View file

@ -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.