From 5cb61fed97c78e0399ba18457e45b51f8eb15edf Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 23 Aug 2005 23:12:48 +0000 Subject: [PATCH] some compilers don't like statics in inline functions, even if they're const -- replaced with an enum git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35289 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/execcmn.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/common/execcmn.cpp b/src/common/execcmn.cpp index a282842090..a84c6d10f0 100644 --- a/src/common/execcmn.cpp +++ b/src/common/execcmn.cpp @@ -88,7 +88,10 @@ void wxStreamTempInputBuffer::Update() { // realloc in blocks of 4Kb: this is the default (and minimal) buffer // size of the Unix pipes so it should be the optimal step - static const size_t incSize = 4096; + // + // NB: don't use "static int" in this inline function, some compilers + // (e.g. IBM xlC) don't like it + enum { incSize = 4096 }; void *buf = realloc(m_buffer, m_size + incSize); if ( !buf ) -- 2.49.0