* libstdcxx_wrapper.cc (operator delete): Remove stray space in
asm name.
This commit is contained in:
parent
5e78ead367
commit
c627d4ddd0
|
@ -1,3 +1,8 @@
|
|||
2009-07-18 Dave Korn <dave.korn.cygwin@gmail.com>
|
||||
|
||||
* libstdcxx_wrapper.cc (operator delete): Remove stray space in
|
||||
asm name.
|
||||
|
||||
2009-07-17 Christopher Faylor <me+cygwin@cgf.cx>
|
||||
|
||||
* cygtls.cc (_cygtls::init_exception_handler): Test for e, not e->prev
|
||||
|
|
|
@ -28,7 +28,7 @@ extern void *operator new(std::size_t sz) throw (std::bad_alloc)
|
|||
extern void *operator new[](std::size_t sz) throw (std::bad_alloc)
|
||||
__asm__ ("___wrap__Znaj");
|
||||
extern void operator delete(void *p) throw()
|
||||
__asm__ ("___wrap__ZdlPv ");
|
||||
__asm__ ("___wrap__ZdlPv");
|
||||
extern void operator delete[](void *p) throw()
|
||||
__asm__ ("___wrap__ZdaPv");
|
||||
extern void *operator new(std::size_t sz, const std::nothrow_t &nt) throw()
|
||||
|
|
Loading…
Reference in New Issue