size_t_c -> size_t renaming

[SVN r17794]
This commit is contained in:
Aleksey Gurtovoy
2003-03-09 23:42:58 +00:00
parent 6b51ae816b
commit b43fe08bf2
7 changed files with 105 additions and 67 deletions

View File

@@ -26,7 +26,13 @@
#if !defined(AUX_WRAPPER_NAME) #if !defined(AUX_WRAPPER_NAME)
# define AUX_WRAPPER_NAME BOOST_PP_CAT(AUX_WRAPPER_VALUE_TYPE,_) # define AUX_WRAPPER_NAME BOOST_PP_CAT(AUX_WRAPPER_VALUE_TYPE,_)
#endif
#if !defined(AUX_WRAPPER_PARAMS)
# define AUX_WRAPPER_PARAMS(N) BOOST_MPL_AUX_NTTP_DECL(AUX_WRAPPER_VALUE_TYPE, N) # define AUX_WRAPPER_PARAMS(N) BOOST_MPL_AUX_NTTP_DECL(AUX_WRAPPER_VALUE_TYPE, N)
#endif
#if !defined(AUX_WRAPPER_INST)
# define AUX_WRAPPER_INST(value) mpl::AUX_WRAPPER_NAME< value > # define AUX_WRAPPER_INST(value) mpl::AUX_WRAPPER_NAME< value >
#endif #endif

View File

@@ -3,7 +3,7 @@
#define BOOST_MPL_LONG_HPP_INCLUDED #define BOOST_MPL_LONG_HPP_INCLUDED
// + file: boost/mpl/long.hpp // + file: boost/mpl/long.hpp
// + last modified: 27/jan/03 // + last modified: 08/mar/03
// Copyright (c) 2000-03 // Copyright (c) 2000-03
// Aleksey Gurtovoy // Aleksey Gurtovoy
@@ -18,6 +18,8 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
#include "boost/mpl/long_fwd.hpp"
#define AUX_WRAPPER_VALUE_TYPE long #define AUX_WRAPPER_VALUE_TYPE long
#include "boost/mpl/aux_/integral_wrapper.hpp" #include "boost/mpl/aux_/integral_wrapper.hpp"

View File

@@ -0,0 +1,25 @@
#ifndef BOOST_MPL_LONG_FWD_HPP_INCLUDED
#define BOOST_MPL_LONG_FWD_HPP_INCLUDED
// + file: boost/mpl/long_fwd.hpp
// + last modified: 08/mar/03
// Copyright (c) 2000-03
// Aleksey Gurtovoy
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted without fee,
// provided that the above copyright notice appears in all copies and
// that both the copyright notice and this permission notice appear in
// supporting documentation. No representations are made about the
// suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty.
//
// See http://www.boost.org/libs/mpl for documentation.
namespace boost { namespace mpl {
template< long N > struct long_;
}}
#endif // BOOST_MPL_LONG_FWD_HPP_INCLUDED

View File

@@ -0,0 +1,29 @@
#ifndef BOOST_MPL_SIZE_T_HPP_INCLUDED
#define BOOST_MPL_SIZE_T_HPP_INCLUDED
// + file: boost/mpl/size_t.hpp
// + last modified: 08/mar/03
// Copyright (c) 2000-03
// Aleksey Gurtovoy
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted without fee,
// provided that the above copyright notice appears in all copies and
// that both the copyright notice and this permission notice appear in
// supporting documentation. No representations are made about the
// suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty.
//
// See http://www.boost.org/libs/mpl for documentation.
#include "boost/mpl/size_t_fwd.hpp"
#define AUX_WRAPPER_VALUE_TYPE std::size_t
#define AUX_WRAPPER_NAME size_t
#define AUX_WRAPPER_PARAMS(N) std::size_t N
#include "boost/mpl/aux_/integral_wrapper.hpp"
#endif // BOOST_MPL_SIZE_T_HPP_INCLUDED

View File

@@ -1,49 +0,0 @@
//-----------------------------------------------------------------------------
// boost mpl/size_t_c.hpp header file
// See http://www.boost.org for updates, documentation, and revision history.
//-----------------------------------------------------------------------------
//
// Copyright (c) 2000-02
// Aleksey Gurtovoy
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted without fee,
// provided that the above copyright notice appears in all copies and
// that both the copyright notice and this permission notice appear in
// supporting documentation. No representations are made about the
// suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty.
#ifndef BOOST_MPL_SIZE_T_C_HPP_INCLUDED
#define BOOST_MPL_SIZE_T_C_HPP_INCLUDED
#include "boost/mpl/integral_c.hpp"
#include "boost/config.hpp"
#include <cstddef> // for std::size_t
namespace boost {
namespace mpl {
template< std::size_t N > struct size_t_c
#if !defined(__BORLANDC__)
: integral_c< std::size_t,N >
{
typedef size_t_c type;
};
#else
{
BOOST_STATIC_CONSTANT(std::size_t, value = N);
typedef size_t_c type;
typedef std::size_t value_type;
typedef size_t_c<N + 1> next;
typedef size_t_c<N - 1> prior;
operator std::size_t() const { return this->value; }
};
#endif
} // namespace mpl
} // namespace boost
#endif // BOOST_MPL_SIZE_T_C_HPP_INCLUDED

View File

@@ -0,0 +1,28 @@
#ifndef BOOST_MPL_SIZE_T_FWD_HPP_INCLUDED
#define BOOST_MPL_SIZE_T_FWD_HPP_INCLUDED
// + file: boost/mpl/size_t_fwd.hpp
// + last modified: 08/mar/03
// Copyright (c) 2000-03
// Aleksey Gurtovoy
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted without fee,
// provided that the above copyright notice appears in all copies and
// that both the copyright notice and this permission notice appear in
// supporting documentation. No representations are made about the
// suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty.
//
// See http://www.boost.org/libs/mpl for documentation.
#include "boost/config.hpp" // make sure 'size_t' is placed into 'std'
#include <cstddef>
namespace boost { namespace mpl {
template< std::size_t N > struct size_t;
}}
#endif // BOOST_MPL_SIZE_T_FWD_HPP_INCLUDED

View File

@@ -1,9 +1,11 @@
//-----------------------------------------------------------------------------
// boost mpl/sizeof.hpp header file #ifndef BOOST_MPL_SIZEOF_HPP_INCLUDED
// See http://www.boost.org for updates, documentation, and revision history. #define BOOST_MPL_SIZEOF_HPP_INCLUDED
//-----------------------------------------------------------------------------
// // + file: boost/mpl/sizeof.hpp
// Copyright (c) 2001-02 // + last modified: 08/mar/03
// Copyright (c) 2000-03
// Aleksey Gurtovoy // Aleksey Gurtovoy
// //
// Permission to use, copy, modify, distribute and sell this software // Permission to use, copy, modify, distribute and sell this software
@@ -13,31 +15,26 @@
// supporting documentation. No representations are made about the // supporting documentation. No representations are made about the
// suitability of this software for any purpose. It is provided "as is" // suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty. // without express or implied warranty.
//
// See http://www.boost.org/libs/mpl for documentation.
#ifndef BOOST_MPL_SIZEOF_HPP_INCLUDED #include "boost/mpl/size_t.hpp"
#define BOOST_MPL_SIZEOF_HPP_INCLUDED
#include "boost/mpl/size_t_c.hpp"
#include "boost/mpl/aux_/void_spec.hpp" #include "boost/mpl/aux_/void_spec.hpp"
#include "boost/mpl/aux_/lambda_support.hpp" #include "boost/mpl/aux_/lambda_support.hpp"
#include <cstddef> // for std::size_t namespace boost { namespace mpl {
namespace boost {
namespace mpl {
template< template<
typename BOOST_MPL_AUX_VOID_SPEC_PARAM(T) typename BOOST_MPL_AUX_VOID_SPEC_PARAM(T)
> >
struct sizeof_ struct sizeof_
: size_t_c<sizeof(T)> : size_t< sizeof(T) >
{ {
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,sizeof_,(T)) BOOST_MPL_AUX_LAMBDA_SUPPORT(1,sizeof_,(T))
}; };
BOOST_MPL_AUX_VOID_SPEC(1, sizeof_) BOOST_MPL_AUX_VOID_SPEC(1, sizeof_)
} // namespace mpl }} // namespace boost::mpl
} // namespace boost
#endif // BOOST_MPL_SIZEOF_HPP_INCLUDED #endif // BOOST_MPL_SIZEOF_HPP_INCLUDED