亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stl_config.h

?? 彩信瀏覽器
?? H
?? 第 1 頁 / 共 2 頁
字號:
/* * * Copyright (c) 1994 * Hewlett-Packard Company * * 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 appear in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation.  Hewlett-Packard Company makes no * representations about the suitability of this software for any * purpose.  It is provided "as is" without express or implied warranty. * * Copyright (c) 1997 * Silicon Graphics * * 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 appear in all copies and * that both that copyright notice and this permission notice appear * in supporting documentation.  Silicon Graphics makes no * representations about the suitability of this software for any * purpose.  It is provided "as is" without express or implied warranty. * */#ifndef __STL_CONFIG_H# define __STL_CONFIG_H// Flags:// * __STL_NO_BOOL: defined if the compiler doesn't have bool as a builtin//   type.// * __STL_HAS_WCHAR_T: defined if the compier has wchar_t as a builtin type.// * __STL_NO_DRAND48: defined if the compiler doesn't have the drand48 //   function.// * __STL_STATIC_TEMPLATE_MEMBER_BUG: defined if the compiler can't handle//   static members of template classes.// * __STL_STATIC_CONST_INIT_BUG: defined if the compiler can't handle a//   constant-initializer in the declaration of a static const data member//   of integer type.  (See section 9.4.2, paragraph 4, of the C++ standard.)// * __STL_CLASS_PARTIAL_SPECIALIZATION: defined if the compiler supports//   partial specialization of template classes.// * __STL_PARTIAL_SPECIALIZATION_SYNTAX: defined if the compiler //   supports partial specialization syntax for full specialization of//   class templates.  (Even if it doesn't actually support partial //   specialization itself.)// * __STL_FUNCTION_TMPL_PARTIAL_ORDER: defined if the compiler supports//   partial ordering of function templates.  (a.k.a partial specialization//   of function templates.)// * __STL_MEMBER_TEMPLATES: defined if the compiler supports template//   member functions of classes.// * __STL_MEMBER_TEMPLATE_CLASSES: defined if the compiler supports //   nested classes that are member templates of other classes.// * __STL_TEMPLATE_FRIENDS: defined if the compiler supports templatized//   friend declarations.// * __STL_EXPLICIT_FUNCTION_TMPL_ARGS: defined if the compiler //   supports calling a function template by providing its template//   arguments explicitly.// * __STL_LIMITED_DEFAULT_TEMPLATES: defined if the compiler is unable//   to handle default template parameters that depend on previous template//   parameters.// * __STL_NON_TYPE_TMPL_PARAM_BUG: defined if the compiler has trouble with//   function template argument deduction for non-type template parameters.// * __SGI_STL_NO_ARROW_OPERATOR: defined if the compiler is unable//   to support the -> operator for iterators.// * __STL_DEFAULT_CONSTRUCTOR_BUG: defined if T() does not work properly//   when T is a builtin type.// * __STL_USE_EXCEPTIONS: defined if the compiler (in the current compilation//   mode) supports exceptions.// * __STL_USE_NAMESPACES: defined if the compiler has the necessary//   support for namespaces.// * __STL_NO_EXCEPTION_HEADER: defined if the compiler does not have a//   standard-conforming header <exception>.// * __STL_NO_BAD_ALLOC: defined if the compiler does not have a <new>//   header, or if <new> does not contain a bad_alloc class.  If a bad_alloc//   class exists, it is assumed to be in namespace std.// * __STL_SGI_THREADS: defined if this is being compiled for an SGI IRIX//   system in multithreaded mode, using native SGI threads instead of //   pthreads.// * __STL_WIN32THREADS: defined if this is being compiled on a WIN32//   compiler in multithreaded mode.// * __STL_PTHREADS: defined if we should use portable pthreads//   synchronization.// * __STL_UITHREADS: defined if we should use UI / solaris / UnixWare threads//   synchronization.  UIthreads are similar to pthreads, but are based //   on an earlier version of the Posix threads standard.// * __STL_LONG_LONG if the compiler has long long and unsigned long long//   types.  (They're not in the C++ standard, but they are expected to be //   included in the forthcoming C9X standard.)// * __STL_THREADS is defined if thread safety is needed.// * __STL_VOLATILE is defined to be "volatile" if threads are being//   used, and the empty string otherwise.// * __STL_USE_CONCEPT_CHECKS enables some extra compile-time error//   checking to make sure that user-defined template arguments satisfy//   all of the appropriate requirements.  This may result in more//   comprehensible error messages.  It incurs no runtime overhead.  This //   feature requires member templates and partial specialization.// * __STL_NO_USING_CLAUSE_IN_CLASS: The compiler does not handle "using"//   clauses inside of class definitions.// * __STL_NO_FRIEND_TEMPLATE_CLASS: The compiler does not handle friend//   declaractions where the friend is a template class.// * __STL_NO_FUNCTION_PTR_IN_CLASS_TEMPLATE: The compiler does not//   support the use of a function pointer type as the argument//   for a template.// * __STL_MEMBER_TEMPLATE_KEYWORD: standard C++ requires the template//   keyword in a few new places (14.2.4).  This flag is set for//   compilers that support (and require) this usage.// User-settable macros that control compilation:// * __STL_USE_SGI_ALLOCATORS: if defined, then the STL will use older//   SGI-style allocators, instead of standard-conforming allocators,//   even if the compiler supports all of the language features needed//   for standard-conforming allocators.// * __STL_NO_NAMESPACES: if defined, don't put the library in namespace//   std, even if the compiler supports namespaces.// * __STL_NO_RELOPS_NAMESPACE: if defined, don't put the relational//   operator templates (>, <=. >=, !=) in namespace std::rel_ops, even//   if the compiler supports namespaces and partial ordering of//   function templates.// * __STL_ASSERTIONS: if defined, then enable runtime checking through the//   __stl_assert macro.// * _PTHREADS: if defined, use Posix threads for multithreading support.// * _UITHREADS:if defined, use SCO/Solaris/UI threads for multithreading //   support// * _NOTHREADS: if defined, don't use any multithreading support.  // * _STL_NO_CONCEPT_CHECKS: if defined, disables the error checking that//   we get from __STL_USE_CONCEPT_CHECKS.// * __STL_USE_NEW_IOSTREAMS: if defined, then the STL will use new,//   standard-conforming iostreams (e.g. the <iosfwd> header).  If not//   defined, the STL will use old cfront-style iostreams (e.g. the//   <iostream.h> header).// Other macros defined by this file:// * bool, true, and false, if __STL_NO_BOOL is defined.// * typename, as a null macro if it's not already a keyword.// * explicit, as a null macro if it's not already a keyword.// * namespace-related macros (__STD, __STL_BEGIN_NAMESPACE, etc.)// * exception-related macros (__STL_TRY, __STL_UNWIND, etc.)// * __stl_assert, either as a test or as a null macro, depending on//   whether or not __STL_ASSERTIONS is defined.# if defined(_PTHREADS) && !defined(_NOTHREADS)#     define __STL_PTHREADS# endif# if defined(_UITHREADS) && !defined(_PTHREADS) && !defined(_NOTHREADS)#     define __STL_UITHREADS# endif# if defined(__sgi) && !defined(__GNUC__)#   include <standards.h>#   if !defined(_BOOL)#     define __STL_NO_BOOL#   endif#   if defined(_MIPS_SIM) && _MIPS_SIM == _ABIO32#     define __STL_STATIC_CONST_INIT_BUG#   endif#   if defined(_WCHAR_T_IS_KEYWORD)#     define __STL_HAS_WCHAR_T #   endif#   if !defined(_TYPENAME_IS_KEYWORD)#     define __STL_NEED_TYPENAME#   endif#   ifdef _PARTIAL_SPECIALIZATION_OF_CLASS_TEMPLATES#     define __STL_CLASS_PARTIAL_SPECIALIZATION#   endif#   if (_COMPILER_VERSION >= 730) && defined(_MIPS_SIM) && _MIPS_SIM != _ABIO32#     define __STL_FUNCTION_TMPL_PARTIAL_ORDER#   endif#   ifdef _MEMBER_TEMPLATES#     define __STL_MEMBER_TEMPLATES#     define __STL_TEMPLATE_FRIENDS#     define __STL_MEMBER_TEMPLATE_CLASSES#   endif#   if defined(_MEMBER_TEMPLATE_KEYWORD)#     define __STL_MEMBER_TEMPLATE_KEYWORD#   endif#   if defined(_STANDARD_C_PLUS_PLUS)#     define __STL_EXPLICIT_FUNCTION_TMPL_ARGS#   endif#   if (_COMPILER_VERSION >= 730) && defined(_MIPS_SIM) && _MIPS_SIM != _ABIO32#     define __STL_MEMBER_TEMPLATE_KEYWORD#   endif#   if COMPILER_VERSION < 720 || (defined(_MIPS_SIM) && _MIPS_SIM == _ABIO32)#     define __STL_DEFAULT_CONSTRUCTOR_BUG#   endif#   if !defined(_EXPLICIT_IS_KEYWORD)#     define __STL_NEED_EXPLICIT#   endif#   ifdef __EXCEPTIONS#     define __STL_USE_EXCEPTIONS#   endif#   if (_COMPILER_VERSION >= 721) && defined(_NAMESPACES)#     define __STL_HAS_NAMESPACES#   endif #   if (_COMPILER_VERSION < 721) || \    !defined(__STL_HAS_NAMESPACES) || defined(__STL_NO_NAMESPACES)#     define __STL_NO_EXCEPTION_HEADER#   endif#   if _COMPILER_VERSION < 730 || !defined(_STANDARD_C_PLUS_PLUS) || \      !defined(_NAMESPACES)#     define __STL_NO_BAD_ALLOC#   endif#   if !defined(_NOTHREADS) && !defined(__STL_PTHREADS)#     define __STL_SGI_THREADS#   endif#   if defined(_LONGLONG) && defined(_SGIAPI) && _SGIAPI#     define __STL_LONG_LONG#   endif#   if _COMPILER_VERSION >= 730 && defined(_STANDARD_C_PLUS_PLUS)#     define __STL_USE_NEW_IOSTREAMS#   endif#   if _COMPILER_VERSION >= 730 && defined(_STANDARD_C_PLUS_PLUS)#     define __STL_CAN_THROW_RANGE_ERRORS#   endif#   if _COMPILER_VERSION >= 730 && defined(_STANDARD_C_PLUS_PLUS)#     define __SGI_STL_USE_AUTO_PTR_CONVERSIONS#   endif# endif/* * Jochen Schlick '1999  - added new #defines (__STL)_UITHREADS (for  *                         providing SCO / Solaris / UI thread support) *                       - added the necessary defines for the SCO UDK 7  *                         compiler (and its template friend behavior) *                       - all UDK7 specific STL changes are based on the  *                         macro __USLC__ being defined */// SCO UDK 7 compiler (UnixWare 7x, OSR 5, UnixWare 2x)# if defined(__USLC__)#     define __STL_HAS_WCHAR_T #     define __STL_CLASS_PARTIAL_SPECIALIZATION#     define __STL_PARTIAL_SPECIALIZATION_SYNTAX#     define __STL_FUNCTION_TMPL_PARTIAL_ORDER#     define __STL_MEMBER_TEMPLATES#     define __STL_MEMBER_TEMPLATE_CLASSES#     define __STL_USE_EXCEPTIONS#     define __STL_HAS_NAMESPACES#     define __STL_USE_NAMESPACES#     define __STL_LONG_LONG#     if defined(_REENTRANT)#           define _UITHREADS     /* if      UnixWare < 7.0.1 */#           define __STL_UITHREADS//   use the following defines instead of the UI threads defines when//   you want to use POSIX threads//#         define _PTHREADS      /* only if UnixWare >=7.0.1 *///#         define __STL_PTHREADS#     endif# endif# ifdef __GNUC__#   if __GNUC__ == 2 && __GNUC_MINOR__ <= 7#     define __STL_STATIC_TEMPLATE_MEMBER_BUG#   endif#   if __GNUC__ < 2 #     define __STL_NEED_TYPENAME#     define __STL_NEED_EXPLICIT#   endif#   if __GNUC__ == 2 && __GNUC_MINOR__ <= 8#     define __STL_NO_EXCEPTION_HEADER#     define __STL_NO_BAD_ALLOC#   endif#   if __GNUC__ == 2 && __GNUC_MINOR__ >= 8#     define __STL_CLASS_PARTIAL_SPECIALIZATION#     define __STL_FUNCTION_TMPL_PARTIAL_ORDER#     define __STL_EXPLICIT_FUNCTION_TMPL_ARGS#     define __STL_MEMBER_TEMPLATES#     define __STL_CAN_THROW_RANGE_ERRORS      //    g++ 2.8.1 supports member template functions, but not member      //    template nested classes.#     if __GNUC_MINOR__ >= 9#       define __STL_MEMBER_TEMPLATE_CLASSES#       define __STL_TEMPLATE_FRIENDS#       define __SGI_STL_USE_AUTO_PTR_CONVERSIONS#       define __STL_HAS_NAMESPACES//#       define __STL_USE_NEW_IOSTREAMS#     endif#   endif#   define __STL_DEFAULT_CONSTRUCTOR_BUG#   ifdef __EXCEPTIONS#     define __STL_USE_EXCEPTIONS#   endif#   ifdef _REENTRANT#     define __STL_PTHREADS#   endif#   if (__GNUC__ < 2) || (__GNUC__ == 2 && __GNUC_MINOR__ < 95)#     define __STL_NO_FUNCTION_PTR_IN_CLASS_TEMPLATE#   endif# endif# if defined(__SUNPRO_CC) 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲主播在线播放| 中文字幕永久在线不卡| 波波电影院一区二区三区| 国产精品久久看| 欧美精品在线观看一区二区| 国内精品第一页| 手机精品视频在线观看| 亚洲精品午夜久久久| 国产欧美日韩亚州综合| 3d动漫精品啪啪1区2区免费| 99国产精品久| 不卡一卡二卡三乱码免费网站 | 制服丝袜一区二区三区| 91成人免费电影| 不卡一区在线观看| 成人午夜视频网站| 国产+成+人+亚洲欧洲自线| 狂野欧美性猛交blacked| 日韩激情在线观看| 美女一区二区三区在线观看| 美女免费视频一区| 国产米奇在线777精品观看| 久久99精品视频| 国内成人自拍视频| 国产酒店精品激情| 国产麻豆91精品| www.日韩av| 欧美性猛片xxxx免费看久爱| 欧美色图免费看| 2021中文字幕一区亚洲| 久久精品人人做人人爽人人| 亚洲欧美偷拍三级| 免费高清在线一区| 国产成人av资源| 3d动漫精品啪啪1区2区免费| 欧美国产乱子伦| 午夜亚洲国产au精品一区二区| 裸体一区二区三区| 91色在线porny| 欧美大尺度电影在线| 亚洲美女少妇撒尿| 久久99精品久久久| 91官网在线观看| 日本一区二区三区在线不卡| 天堂蜜桃91精品| 国产suv精品一区二区883| 欧美另类变人与禽xxxxx| 国产精品国产三级国产有无不卡| 奇米色777欧美一区二区| 一本到不卡精品视频在线观看| 精品福利二区三区| 亚洲一区二区视频在线观看| 国产91在线看| 久久网站热最新地址| 丝袜脚交一区二区| 在线观看亚洲精品视频| 国产精品国产自产拍在线| 国产不卡视频在线播放| 久久久亚洲综合| 国产一区二区三区美女| 久久精品人人做人人爽97| 另类欧美日韩国产在线| 日韩一区二区精品葵司在线| 亚洲电影中文字幕在线观看| 91成人免费在线| 亚洲国产一二三| 欧美日韩一区二区在线观看| 一区二区三区国产精品| 色综合久久久久网| 一区二区三区精品在线观看| 在线精品视频小说1| 亚洲综合在线五月| 欧美一区二区三区的| 美洲天堂一区二卡三卡四卡视频| 日韩精品一区二区三区在线播放 | 欧美一区三区四区| 日韩av电影免费观看高清完整版在线观看| 91黄色激情网站| 日本成人在线电影网| 337p日本欧洲亚洲大胆精品| 国产不卡在线播放| 又紧又大又爽精品一区二区| 欧美美女一区二区在线观看| 亚洲青青青在线视频| 久久99久国产精品黄毛片色诱| 中文字幕一区二区不卡| 久久久国际精品| 91色九色蝌蚪| 日本人妖一区二区| 国产欧美一区二区在线| 99久久精品免费精品国产| 一区二区三区不卡视频| 欧美日韩成人综合在线一区二区| 性欧美疯狂xxxxbbbb| 精品日产卡一卡二卡麻豆| 成人免费视频视频| 久久精品国产99久久6| 综合分类小说区另类春色亚洲小说欧美| 欧美日韩亚洲综合| 91免费视频网址| 精品一区二区在线观看| 亚洲一区在线观看免费| 日本一区二区三区电影| 91精品国产欧美一区二区18| 色呦呦国产精品| 91在线精品一区二区| 国产经典欧美精品| 国产精品88888| 99re免费视频精品全部| 欧美三级午夜理伦三级中视频| 国产肉丝袜一区二区| 久久亚洲捆绑美女| 日本乱人伦aⅴ精品| 午夜一区二区三区视频| 91精选在线观看| 色欧美88888久久久久久影院| 色欧美乱欧美15图片| 欧美在线你懂得| 8v天堂国产在线一区二区| 91偷拍与自偷拍精品| 亚洲成人你懂的| 一本色道久久加勒比精品| 亚洲色图欧洲色图婷婷| 欧美性感一类影片在线播放| 婷婷中文字幕综合| 国产精品天干天干在观线| 7777精品伊人久久久大香线蕉最新版| 精品在线亚洲视频| 国产精品久久综合| 国产精品久久午夜夜伦鲁鲁| 中文字幕免费在线观看视频一区| 欧美精品一区二区三区很污很色的| 欧美日韩精品一区二区在线播放| 日韩中文字幕不卡| 国产精品入口麻豆九色| 久久久99久久| 国产香蕉久久精品综合网| 色视频欧美一区二区三区| 蜜桃精品视频在线| 日韩不卡一区二区| 亚洲激情欧美激情| 蜜臀av性久久久久蜜臀av麻豆| 亚洲成在线观看| 亚洲一区av在线| 一区二区三国产精华液| 日本亚洲最大的色成网站www| 久久精品国产亚洲高清剧情介绍 | 精品日本一线二线三线不卡| 国产精品白丝在线| 久久99国产乱子伦精品免费| 国产成人av电影在线| 在线播放/欧美激情| 一区视频在线播放| 精品一区二区三区在线观看 | 一本久久a久久精品亚洲| 91丨九色丨尤物| 国产精品看片你懂得| 大胆欧美人体老妇| 国产精品毛片久久久久久久| 国产不卡高清在线观看视频| 久久综合网色—综合色88| 久久综合狠狠综合久久综合88| 欧美国产精品一区二区三区| 日韩专区一卡二卡| 欧美亚洲自拍偷拍| 国产精品久久久久婷婷二区次| 国产成a人亚洲| 国产精品无人区| 免费在线看成人av| 日本道色综合久久| 久久丝袜美腿综合| 国产精品免费视频网站| 国产精品久久久久久久裸模 | 成人精品小蝌蚪| 欧美一区二区三区影视| 日韩国产精品久久| 在线中文字幕一区| 亚洲伊人色欲综合网| 色噜噜狠狠成人网p站| 亚洲三级在线播放| 一本高清dvd不卡在线观看| 亚洲色图视频网| 色婷婷综合久久久| 亚洲男同性视频| 欧美撒尿777hd撒尿| 日本在线播放一区二区三区| 欧美日韩精品免费| 九色porny丨国产精品| 2欧美一区二区三区在线观看视频 337p粉嫩大胆噜噜噜噜噜91av | 韩国一区二区在线观看| 久久一区二区视频| 成人91在线观看| 亚洲一区二区偷拍精品| 91精品婷婷国产综合久久| 久久精品久久综合| 久久精品日产第一区二区三区高清版| 成人激情小说乱人伦| 亚洲日本欧美天堂| 日本电影欧美片| 亚洲黄色小视频|