os/ossrv/ossrv_pub/boost_apis/boost/checked_delete.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED
sl@0
     2
#define BOOST_CHECKED_DELETE_HPP_INCLUDED
sl@0
     3
sl@0
     4
// MS compatible compilers support #pragma once
sl@0
     5
sl@0
     6
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
     7
# pragma once
sl@0
     8
#endif
sl@0
     9
sl@0
    10
//
sl@0
    11
//  boost/checked_delete.hpp
sl@0
    12
//
sl@0
    13
//  Copyright (c) 2002, 2003 Peter Dimov
sl@0
    14
//  Copyright (c) 2003 Daniel Frey
sl@0
    15
//  Copyright (c) 2003 Howard Hinnant
sl@0
    16
//
sl@0
    17
//  Distributed under the Boost Software License, Version 1.0. (See
sl@0
    18
//  accompanying file LICENSE_1_0.txt or copy at
sl@0
    19
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
    20
//
sl@0
    21
//  See http://www.boost.org/libs/utility/checked_delete.html for documentation.
sl@0
    22
//
sl@0
    23
sl@0
    24
namespace boost
sl@0
    25
{
sl@0
    26
sl@0
    27
// verify that types are complete for increased safety
sl@0
    28
sl@0
    29
template<class T> inline void checked_delete(T * x)
sl@0
    30
{
sl@0
    31
    // intentionally complex - simplification causes regressions
sl@0
    32
    typedef char type_must_be_complete[ sizeof(T)? 1: -1 ];
sl@0
    33
    (void) sizeof(type_must_be_complete);
sl@0
    34
    delete x;
sl@0
    35
}
sl@0
    36
sl@0
    37
template<class T> inline void checked_array_delete(T * x)
sl@0
    38
{
sl@0
    39
    typedef char type_must_be_complete[ sizeof(T)? 1: -1 ];
sl@0
    40
    (void) sizeof(type_must_be_complete);
sl@0
    41
    delete [] x;
sl@0
    42
}
sl@0
    43
sl@0
    44
template<class T> struct checked_deleter
sl@0
    45
{
sl@0
    46
    typedef void result_type;
sl@0
    47
    typedef T * argument_type;
sl@0
    48
sl@0
    49
    void operator()(T * x) const
sl@0
    50
    {
sl@0
    51
        // boost:: disables ADL
sl@0
    52
        boost::checked_delete(x);
sl@0
    53
    }
sl@0
    54
};
sl@0
    55
sl@0
    56
template<class T> struct checked_array_deleter
sl@0
    57
{
sl@0
    58
    typedef void result_type;
sl@0
    59
    typedef T * argument_type;
sl@0
    60
sl@0
    61
    void operator()(T * x) const
sl@0
    62
    {
sl@0
    63
        boost::checked_array_delete(x);
sl@0
    64
    }
sl@0
    65
};
sl@0
    66
sl@0
    67
} // namespace boost
sl@0
    68
sl@0
    69
#endif  // #ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED