X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..25e2f480a7865625b25753d159ae351b78d337b9:/src/common/execcmn.cpp?ds=sidebyside 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 )