x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
addressof.hpp - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\utility\addressof.hpp
Girar
Efecto
Propiedad
Historial
// Copyright (C) 2002 Brad King (brad.king@kitware.com) // Douglas Gregor (gregod@cs.rpi.edu) // Peter Dimov // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // For more information, see http://www.boost.org #ifndef BOOST_UTILITY_ADDRESSOF_HPP # define BOOST_UTILITY_ADDRESSOF_HPP # include
# include
namespace boost { // Do not make addressof() inline. Breaks MSVC 7. (Peter Dimov) // VC7 strips const from nested classes unless we add indirection here # if BOOST_WORKAROUND(BOOST_MSVC, == 1300) template
struct _addp { typedef T * type; }; template
typename _addp
::type # else template
T* # endif addressof(T& v) { return reinterpret_cast
( &const_cast
(reinterpret_cast
(v))); } // Borland doesn't like casting an array reference to a char reference // but these overloads work around the problem. # if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) template
T (*addressof(T (&t)[N]))[N] { return reinterpret_cast
(&t); } template
const T (*addressof(const T (&t)[N]))[N] { return reinterpret_cast
(&t); } # endif } #endif // BOOST_UTILITY_ADDRESSOF_HPP
addressof.hpp
Dirección de la página
Dirección del archivo
Anterior 1/8
Siguiente
Descargar
( 1 KB )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.