static16.c
来自「linux下编程用 编译软件」· C语言 代码 · 共 21 行
C
21 行
// PR c++/23691namespace std { class type_info { bool operator==(const type_info& __arg) const; };}template <class T, T val> struct integral_constant { static const T value = val;};template< typename T > struct is_integral : integral_constant<bool,false> {};template <bool B> struct enable_if_c {};template<typename Functor>typename enable_if_c<(is_integral<Functor>::value)>::typeoperator==(const int& f, Functor g);template<class D>int get_deleter( std::type_info const & ti ){ return ti == typeid(D);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?