From fdaafdf6594322e944b17e4709b2d4cd9082737d Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 9 May 2014 18:05:18 +0300 Subject: [PATCH] reduced fast_oss stack size to 128 --- include/c11log/details/fast_oss.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/c11log/details/fast_oss.h b/include/c11log/details/fast_oss.h index 487fd1d0..a7e67aeb 100644 --- a/include/c11log/details/fast_oss.h +++ b/include/c11log/details/fast_oss.h @@ -61,7 +61,7 @@ protected: return ch; } private: - stack_buf<256> _stackbuf; + stack_buf<128> _stackbuf; }; class fast_oss :public std::ostream