__rw::__rw_throw(): operator delete[] called without corresponding operator 
new[] call
--------------------------------------------------------------------------------------

                 Key: STDCXX-293
                 URL: http://issues.apache.org/jira/browse/STDCXX-293
             Project: C++ Standard Library
          Issue Type: Bug
          Components: 18. Language Support, 19. Diagnostics
    Affects Versions: 4.1.3
         Environment: All
            Reporter: Farid Zaripov


The test below fails:

-----------------------------------------------------------
#include <cstddef>          // for std::size_t
#include <assert.h>         // for assert
#include <rw/_error.h>      // for __rw_throw_proc, _RWSTD_ERROR_LOCALE_BAD_CAT

void* operator new[] (std::size_t)
{
    assert (!"operator new[] unexpectedly called");
    return 0;
}

void operator delete[] (void*)
{
    assert (!"operator delete[] called without operator new[]");
}

int main ()
{
    __rw::__rw_throw (_RWSTD_ERROR_LOCALE_BAD_CAT + 1, __FILE__, "main");

    return 0;
}
-----------------------------------------------------------

Assertion failed: !"operator delete[] called without operator new[]", file .\tes
t.cpp, line 13

This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
-----------------------------------------------------------

The details are here: 
http://mail-archives.apache.org/mod_mbox/incubator-stdcxx-dev/200609.mbox/[EMAIL
 PROTECTED]


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to