call of overloaded ‘malloc(int)’ is ambiguous – Ubuntu
The following function belongs to the CoinUtils project, that is used in the open-source CBC linear programming solver. /** Returns strdup or NULL if original NULL */ inline char *CoinStrdup(const char *name) { char *dup = NULL; if (name) {…