Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 593930
Collapse All | Expand All

(-)duma_2_5_15/dumapp.cpp.old (+4 lines)
Lines 190-196 Link Here
190
 * (11) = (a) ; ASW
190
 * (11) = (a) ; ASW
191
 */
191
 */
192
void * DUMA_CDECL operator new( DUMA_SIZE_T size )
192
void * DUMA_CDECL operator new( DUMA_SIZE_T size )
193
#if __cplusplus < 201103L
193
throw(std::bad_alloc)
194
throw(std::bad_alloc)
195
#endif
194
{
196
{
195
  return duma_new_operator(size, EFA_NEW_ELEM, true  DUMA_PARAMS_UK);
197
  return duma_new_operator(size, EFA_NEW_ELEM, true  DUMA_PARAMS_UK);
196
}
198
}
Lines 254-260 Link Here
254
 * (21) = (a) ; AAW
256
 * (21) = (a) ; AAW
255
 */
257
 */
256
void * DUMA_CDECL operator new[]( DUMA_SIZE_T size )
258
void * DUMA_CDECL operator new[]( DUMA_SIZE_T size )
259
#if __cplusplus < 201103L
257
throw(std::bad_alloc)
260
throw(std::bad_alloc)
261
#endif
258
{
262
{
259
  return duma_new_operator(size, EFA_NEW_ARRAY, true  DUMA_PARAMS_UK);
263
  return duma_new_operator(size, EFA_NEW_ARRAY, true  DUMA_PARAMS_UK);
260
}
264
}

Return to bug 593930