You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CoinLpIO complains when name are longer than 100 chars.
You should either use string instead of chars to store names or use a ifdef to allow to fine tune the maximum size of the buffer like:
Unfortunately, code has been reformatted, which will make it difficult to apply the changes.
Can you create a pull request with respect to the current CoinUtils source for this?
Issue created by migration from Trac.
Original creator: @ycollet
Original creation time: 2014-03-10 09:05:24
CoinLpIO complains when name are longer than 100 chars.
You should either use string instead of chars to store names or use a ifdef to allow to fine tune the maximum size of the buffer like:
#ifndef COIN_LPIO_BUFFER
#define COIN_LPIO_BUFFER 1024
#endif
And use this symbol where the buffer is too small.
The text was updated successfully, but these errors were encountered: