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

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

?? stl_mycomp.h

?? 粗慥集成算法集合 ,并有詳細的文檔資料和測試數據處
?? H
字號:
/*
 * Copyright (c) 1997
 * Moscow Center for SPARC Technology
 *
 * Copyright (c) 1999 
 * Boris Fomitchev
 *
 * This material is provided "as is", with absolutely no warranty expressed
 * or implied. Any use is at your own risk.
 *
 * Permission to use or copy this software for any purpose is hereby granted 
 * without fee, provided the above notices are retained on all copies.
 * Permission to modify the code and to distribute modified code is granted,
 * provided the above notices are retained, and a notice that the code was
 * modified is included with the above copyright notice.
 *
 */

/*
 * Purpose of this file :
 *
 * A list of COMPILER-SPECIFIC portion of STLport settings.
 * This file is provided to help in manulal configuration
 * of STLport. This file is being included by stlcomp.h 
 * when STLport is unable to identify your compiler.
 * Please remove the error diagnostic below before adjusting 
 * macros.
 * 
 */
# ifndef __STLPORT_MYCOMP_H
#  define  __STLPORT_MYCOMP_H

// Error diagnostic 

# error "Your compiler version is not recognized by STLport. Please edit <config/stl_mycomp.h>

//==========================================================

// the values choosen here as defaults try to give
// maximum functionality on the most conservative settings

// Mostly correct guess, change it for Alpha (and other environments
// that has 64-bit "long")
// #  define __STL_UINT32_T unsigned long

// Disables wchar_t functinality
// #  define __STL_NO_WCHAR_T  1

// Define if wchar_t is not a unique type, and is actually a typedef to unsigned short. 
// #  define __STL_WCHAR_T_IS_USHORT 1

// Uncomment if long long is available
// #  define __STL_LONG_LONG 1

// Uncomment if long double is not available
// #  define __STL_NO_LONG_DOUBLE 1

// Uncomment this if your compiler does not support "typename" keyword
// #  define __STL_NEED_TYPENAME 1

// Uncomment this if your compiler does not support "mutable" keyword
// #  define __STL_NEED_MUTABLE 1

// Uncomment this if your compiler does not support "explicit" keyword
// #  define __STL_NEED_EXPLICIT 1

// Uncomment if new-style-casts like const_cast<> are not available
// #  define __STL_NO_NEW_STYLE_CASTS 1

// Uncomment this if your compiler does not have "bool" type
// #  define  __STL_NO_BOOL 1

// Uncomment this if your compiler does not have "bool" type, but has "bool" keyword reserved
// #  define  __STL_DONT_USE_BOOL_TYPEDEF 1

// Uncomment this if your compiler does not have "bool" type, but defines "bool" in <yvals.h>
// #  define  __STL_YVALS_H 1

// Uncomment this if your compiler has limited or no default template arguments for classes
// #  define __STL_LIMITED_DEFAULT_TEMPLATES 1

// Uncomment this if your compiler support only complete (not dependent on other parameters)
// types as default parameters for class templates
// #  define __STL_DEFAULT_TYPE_PARAM 1

// Uncomment this if your compiler has problem with not-type
// default template parameters
// #  define __STL_NO_DEFAULT_NON_TYPE_PARAM 1

// Define if compiler has
// trouble with functions getting non-type-parameterized classes as parameters
// #  define __STL_NON_TYPE_TMPL_PARAM_BUG 1

// Uncomment this if your compiler lacks static data members.
// Uncomment next line if your compiler supports __attribute__((weak))
// #  define __STL_NO_STATIC_TEMPLATE_DATA 1
// #  define __STL_WEAK_ATTRIBUTE 1

// Uncomment this if your compiler does not support namespaces 
// #  define __STL_HAS_NO_NAMESPACES 1

// Uncomment if "using" keyword does not work with template types 
// # define __STL_BROKEN_USING_DIRECTIVE 1

// Uncomment this if your compiler does not support exceptions
// #  define __STL_HAS_NO_EXCEPTIONS 1

// Uncomment this if your compiler does not support exception specifications
// #  define __STL_NO_EXCEPTION_SPEC

// Define this if your compiler requires return statement after throw()
// # define __STL_THROW_RETURN_BUG 1

// Header <new> that comes with the compiler 
// does not define bad_alloc exception
// #  define __STL_NO_BAD_ALLOC  1

// Uncomment if member template methods are not available
// #  define __STL_NO_MEMBER_TEMPLATES   1

// Uncomment if member template classes are not available
// #  define __STL_NO_MEMBER_TEMPLATE_CLASSES   1

// Uncomment if no "template" keyword should be used with member template classes
// #  define __STL_NO_MEMBER_TEMPLATE_KEYWORD   1

// Uncomment if friend member templates are not available
// #  define __STL_NO_FRIEND_TEMPLATES   1

// Compiler does not accept friend declaration qualified with namespace name.
// #  define __STL_NO_QUALIFIED_FRIENDS 1

// Uncomment if partial specialization is not available
// #  define __STL_NO_CLASS_PARTIAL_SPECIALIZATION 1

// Define if class being partially specialized require full name (template parameters)
// of itself for method declarations
// #  define __STL_PARTIAL_SPEC_NEEDS_TEMPLATE_ARGS

// partial specialization has bugs that prevent you from
// using new-style reverse_iterator
// #  define __STL_PARTIAL_SPECIALIZATION_BUG

// Compiler has problems specializing members of partially 
// specialized class
// #  define __STL_MEMBER_SPECIALIZATION_BUG

// Uncomment if partial order of template functions is not available
// #  define __STL_NO_FUNC_PARTIAL_ORDERING 1

// Uncomment if specialization of methods is not allowed
// #  define __STL_NO_METHOD_SPECIALIZATION  1

// Uncomment if full  specialization does not use partial spec. syntax : template <> struct ....
// #  define __STL_NO_PARTIAL_SPECIALIZATION_SYNTAX  1

// Uncomment if compiler does not support explicit template arguments for functions
// # define __STL_NO_EXPLICIT_FUNCTION_TMPL_ARGS

// Uncomment if "__typetraits is being instaniated automatically by the compiler (SGI only ?)
// #  define __STL_AUTOMATIC_TYPE_TRAITS 1

// Uncomment this if your compiler can't inline while(), for()
// #  define __STL_LOOP_INLINE_PROBLEMS 1

// Define if the compiler fails to match a template function argument of base
// #  define __STL_BASE_MATCH_BUG          1

// Define if the compiler fails to match a template function argument of base
// (non-template)
//#  define  __STL_NONTEMPL_BASE_MATCH_BUG 1

// Define if the compiler rejects outline method definition 
// explicitly taking nested types/typedefs
// #  define __STL_NESTED_TYPE_PARAM_BUG   1

// Compiler requires typename keyword on outline method definition 
// explicitly taking nested types/typedefs
// #define  __STL_TYPENAME_ON_RETURN_TYPE

// Define if the baseclass typedefs not visible from outside
// #  define __STL_BASE_TYPEDEF_OUTSIDE_BUG 1

// if your compiler have serious problems with typedefs, try this one
// #  define __STL_BASE_TYPEDEF_BUG          1

// Uncomment if getting errors compiling mem_fun* adaptors
// #  define __STL_MEMBER_POINTER_PARAM_BUG 1

// #  define __STL_UNINITIALIZABLE_PRIVATE  1

// Defined if the compiler
// has trouble instantiating static array members with dimension defined as enum
// # define __STL_STATIC_ARRAY_BUG

// * __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.)
// # define __STL_STATIC_CONST_INIT_BUG

// Define if default constructor for builtin integer type fails to initialize it to 0
// #  define __STL_DEFAULT_CONSTRUCTOR_BUG    1

// Defined if constructor
// required to explicitly call member's default constructors for const objects
// #  define __STL_CONST_CONSTRUCTOR_BUG    1

// Defined if the compiler has trouble calling POD-types constructors/destructors
// #  define __STL_TRIVIAL_CONSTRUCTOR_BUG    1
// #  define __STL_TRIVIAL_DESTRUCTOR_BUG    1

// Define if having problems specializing maps/sets with
// key type being const 
// #  define __STL_MULTI_CONST_TEMPLATE_ARG_BUG

// Uncomment this to disable -> operators on all iterators
// #  define   __SGI_STL_NO_ARROW_OPERATOR 1

// Uncomment this to disble at() member functions for containers
// #  define   __STL_NO_AT_MEMBER_FUNCTION 1

// Uncomment if native new-style iostreams are not available
// #define    __STL_HAS_NO_NEW_IOSTREAMS	1

// Define this if compiler lacks <exception> header
// #  define __STL_NO_EXCEPTION_HEADER 1

// Uncomment this if your C library has lrand48() function
// #  define __STL_RAND48 1

// Uncomment if native new-style C library headers lile <cstddef>, etc are not available.
// #   define __STL_HAS_NO_NEW_C_HEADERS 1

// uncomment if new-style headers <new> is available
// #  define __STL_HAS_NEW_NEW_HEADER 1

// uncomment this if <iostream> and other STD headers put their stuff in ::namespace,
// not std::
// #  define __STL_VENDOR_GLOBAL_STD

// uncomment this if <cstdio> and the like put stuff in ::namespace,
// not std::
// #  define __STL_VENDOR_GLOBAL_CSTD

// Edit relative path below (or put full path) to get native 
// compiler headers included. Default is "../include".
// C headers may reside in different directory, so separate macro is provided.
// Hint : never install STLport in the directory that ends with "include"
// # define __STL_NATIVE_INCLUDE_PATH ../include
// # define __STL_NATIVE_C_INCLUDE_PATH ../include

// This macro constructs header path from directory and name.
// You may change it if your compiler does not understand "/". 
// #  define __STL_MAKE_HEADER(path, header) <path/header>

// This macro constructs native include header path from include path and name.
// You may have do define it if experirncing problems with preprocessor
// # define __STL_NATIVE_HEADER(header) __STL_MAKE_HEADER(__STL_NATIVE_INCLUDE_PATH,header)

// Same for C headers
// __STL_NATIVE_C_HEADER(header)

//==========================================================
# endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费高清在线一区| 精品国产一区二区三区四区四| 91麻豆精品国产91| 欧美唯美清纯偷拍| 久久国内精品自在自线400部| 国产亚洲一区字幕| 久久嫩草精品久久久精品一| 欧美成人性战久久| 久久天天做天天爱综合色| 精品免费日韩av| 久久久久久黄色| 国产精品高清亚洲| 亚洲柠檬福利资源导航| 亚洲综合一区二区三区| 亚洲午夜久久久| 免费在线观看一区二区三区| 美女脱光内衣内裤视频久久影院| 日韩精品电影一区亚洲| 韩国v欧美v日本v亚洲v| 懂色一区二区三区免费观看| 国产电影精品久久禁18| 91免费观看视频| 欧美精品tushy高清| 91.com视频| 国产午夜精品一区二区三区嫩草| 亚洲欧洲99久久| 日韩成人伦理电影在线观看| 国产在线观看一区二区| 91在线视频播放地址| 7777精品伊人久久久大香线蕉| 2024国产精品视频| 亚洲中国最大av网站| 久久精品免费看| 久久精品国产精品亚洲红杏| 99视频有精品| 日韩一级在线观看| ●精品国产综合乱码久久久久| 亚洲1区2区3区4区| 高清成人在线观看| 欧美精品色一区二区三区| 久久免费电影网| 亚洲影院理伦片| 成人免费毛片aaaaa**| 91精品国产手机| 亚洲色图一区二区| 国产一区二区调教| 欧美精品自拍偷拍| 国产精品国产三级国产aⅴ中文 | 国产精品福利av| 日韩成人dvd| 色视频一区二区| 久久久久久久久蜜桃| 五月天丁香久久| 91麻豆国产自产在线观看| 欧美精品一区二区三| 五月激情六月综合| 色悠久久久久综合欧美99| 久久精品男人天堂av| 蜜臀av一区二区三区| 在线免费观看日本欧美| 国产精品久久精品日日| 国内精品伊人久久久久av影院| 91福利在线看| 亚洲青青青在线视频| 国产91露脸合集magnet| 精品久久久久一区| 日本最新不卡在线| 8x8x8国产精品| 日韩电影在线免费看| 欧美日韩在线播放三区四区| 亚洲男人天堂av网| 色狠狠综合天天综合综合| 国产精品电影一区二区| youjizz国产精品| 国产精品毛片久久久久久久| 国产精品一区二区在线观看网站| 欧美mv和日韩mv国产网站| 青青草97国产精品免费观看| 欧美日韩一区二区三区免费看| 亚洲综合在线视频| 欧美性感一类影片在线播放| 亚洲国产综合色| 欧美狂野另类xxxxoooo| 香蕉久久夜色精品国产使用方法 | 日韩不卡一二三区| 91精品国产综合久久婷婷香蕉| 热久久免费视频| 精品国产乱码久久久久久蜜臀 | 亚洲美女区一区| 在线一区二区观看| 日韩av中文字幕一区二区三区| 日韩精品一区二区三区视频播放 | 91网上在线视频| 一区二区三区免费在线观看| 欧美午夜影院一区| 日本午夜精品视频在线观看| 日韩午夜av一区| 成人午夜免费电影| 亚洲一区在线看| 欧美精品一区二区三区在线 | 亚洲第一狼人社区| 日韩美一区二区三区| 国产黄色91视频| 夜夜嗨av一区二区三区四季av| 欧美日韩国产首页| 国产精品自拍在线| 亚洲欧美日本在线| 欧美一区二区三区免费大片| 国产麻豆91精品| 亚洲永久精品大片| 久久这里只有精品视频网| av高清不卡在线| 麻豆91在线播放免费| 亚洲人一二三区| 2020国产精品久久精品美国| 91麻豆swag| 国产在线精品国自产拍免费| 夜夜嗨av一区二区三区网页 | 成人国产精品免费观看视频| 亚洲国产aⅴ成人精品无吗| 久久精品欧美一区二区三区麻豆| 色噜噜久久综合| 国产精品88888| 午夜视频久久久久久| 国产精品久久久久久久久果冻传媒| 欧美日韩国产另类不卡| 成人黄色在线看| 久久99九九99精品| 亚洲成a人片综合在线| 欧美国产日韩一二三区| 欧美va亚洲va在线观看蝴蝶网| 91视频国产观看| 国产九色sp调教91| 欧美aaaaa成人免费观看视频| 亚洲精品国久久99热| 国产精品网站导航| 久久久久国产一区二区三区四区| 欧美精选一区二区| 日本高清不卡在线观看| 成人午夜激情片| 国产成人激情av| 久久97超碰国产精品超碰| 婷婷六月综合网| 亚洲国产一区二区视频| 一个色在线综合| 亚洲精品国产精华液| 亚洲少妇屁股交4| 国产精品久久久久婷婷二区次| 精品日韩一区二区三区| 日韩网站在线看片你懂的| 91精品啪在线观看国产60岁| 在线免费不卡电影| 色婷婷久久久亚洲一区二区三区| 成人开心网精品视频| 9l国产精品久久久久麻豆| 成人网页在线观看| 成人美女在线视频| 成人av网站在线| 91麻豆国产在线观看| 色国产精品一区在线观看| 在线中文字幕不卡| 欧美年轻男男videosbes| 欧美日韩亚洲不卡| 欧美一区二区女人| 久久亚洲捆绑美女| 欧美高清在线一区| 亚洲激情六月丁香| 午夜激情久久久| 免费高清视频精品| 国产剧情一区在线| av在线播放成人| 欧美人牲a欧美精品| 日韩精品一区二区三区四区| 久久久久99精品国产片| 国产精品高清亚洲| 亚洲一二三级电影| 狠狠色综合色综合网络| 国产夫妻精品视频| 在线观看欧美日本| 日韩欧美资源站| 国产精品热久久久久夜色精品三区 | 丁香一区二区三区| 91网站在线观看视频| 91精品国产一区二区人妖| 久久综合狠狠综合久久综合88| 国产精品人妖ts系列视频| 亚洲综合在线视频| 精品一区二区三区在线观看国产| 成人性生交大片免费| 欧美视频中文字幕| 国产欧美一区二区精品性色超碰| 亚洲美女区一区| 国产一区二区三区免费播放| 一本色道亚洲精品aⅴ| 日韩视频一区二区在线观看| 国产精品久久久久久久久晋中 | 国产一区二区免费在线| 在线视频欧美区| 国产视频视频一区| 婷婷夜色潮精品综合在线|