⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 boost_no_wchar_t.ipp

📁 Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work
💻 IPP
字号:
//  (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>#endifnamespace 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -