kernel/eka/compsupp/rvct2_2/rtopdel.cpp
changeset 0 a41df078684a
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "ARM EABI LICENCE.txt"
       
     5 // which accompanies this distribution, and is available
       
     6 // in kernel/eka/compsupp.
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #include <e32std.h>
       
    17 #include <e32std_private.h>
       
    18 
       
    19 EXPORT_C void operator delete(TAny *aPtr) __NO_THROW
       
    20 //
       
    21 // The replacement delete operator.
       
    22 //
       
    23 	{
       
    24 
       
    25 	User::Free(aPtr);
       
    26 	}
       
    27 
       
    28 EXPORT_C void operator delete[](TAny * aPtr) __NO_THROW
       
    29     {
       
    30 
       
    31     User::Free(aPtr);
       
    32     }
       
    33 
       
    34 EXPORT_C void operator delete(TAny *aPtr, const std::nothrow_t& aNoThrow) __NO_THROW
       
    35 //
       
    36 // The replacement delete operator.
       
    37 //
       
    38 	{
       
    39 	(void)aNoThrow;
       
    40 	User::Free(aPtr);
       
    41 	}
       
    42 
       
    43 EXPORT_C void operator delete[](TAny * aPtr, const std::nothrow_t& aNoThrow) __NO_THROW
       
    44 	{
       
    45 	(void)aNoThrow;
       
    46 	User::Free(aPtr);
       
    47 	}