|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
56 p = reinterpret_cast<T >(malloc( sizeof(*p) * n));
60 MSG_ERROR( spxout << "EMALLC01 malloc: Out of memory - cannot allocate "
61 << sizeof(*p) * n << " bytes" << std::endl; )
79 T pp = reinterpret_cast<T >(realloc(p, sizeof(*p) * n));
83 MSG_ERROR( spxout << "EMALLC02 realloc: Out of memory - cannot allocate "
84 << sizeof(*p) * n << " bytes" << std::endl; )
104 #endif // _SPXALLOC_H_
|