forked from OSchip/llvm-project
Remove statement with no effect inside tests.
llvm-svn: 233816
This commit is contained in:
parent
bb0f2bd3c1
commit
ba7c3ff32f
|
@ -23,7 +23,6 @@ int delete_nothrow_called = 0;
|
|||
void operator delete[](void* p) throw()
|
||||
{
|
||||
++delete_called;
|
||||
delete_nothrow_called;
|
||||
std::free(p);
|
||||
}
|
||||
|
||||
|
|
|
@ -23,7 +23,6 @@ int delete_nothrow_called = 0;
|
|||
void operator delete(void* p) throw()
|
||||
{
|
||||
++delete_called;
|
||||
delete_nothrow_called;
|
||||
std::free(p);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue