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

console: Suppress frame size warning for now.

This commit is contained in:
Jason Volk 2017-12-12 13:36:12 -07:00
parent 3742ce38dd
commit b167ed217c

View file

@ -171,6 +171,8 @@ const char *const console_message
*** This is a client and your commands will originate from the server itself.
***)"};
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wframe-larger-than="
void
console()
try
@ -1579,3 +1581,4 @@ catch(const std::exception &e)
ircd::log::error("%s", e.what());
return true;
}
#pragma GCC diagnostic pop