boost_no_wchar_t.ipp

来自「C++的一个好库。。。现在很流行」· IPP 代码 · 共 46 行

IPP
46
字号
//  (C) Copyright John Maddock 2001. 
//  Use, modification and distribution are subject to 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)

//  See http://www.boost.org/libs/config for most recent version.

//  MACRO:         BOOST_NO_INTRINSIC_WCHAR_T
//  TITLE:         intrinsic wchar_t
//  DESCRIPTION:   The C++ implementation does not provide wchar_t,
//                 or it is really a synonym for another integral type.
//                 Use this symbol to decide whether it is appropriate
//                 to explicitly specialize a template on wchar_t if there
//                 is already a specialization for other integer types.

#ifndef BOOST_NO_CWCHAR
#include <wchar.h>
#endif

namespace boost_no_intrinsic_wchar_t{

template <class T>
struct is_int{ int i; };

template <> struct is_int<unsigned char>{ int i; };
template <> struct is_int<signed char>{ int i; };
template <> struct is_int<char>{ int i; };
template <> struct is_int<unsigned short>{ int i; };
template <> struct is_int<short>{ int i; };
template <> struct is_int<unsigned int>{ int i; };
template <> struct is_int<int>{ int i; };
template <> struct is_int<unsigned long>{ int i; };
template <> struct is_int<long>{ int i; };
template <> struct is_int<wchar_t>{ int i; };

int test()
{
   return 0;
}

}




⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?