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

📄 spec24.c

📁 linux下编程用 编译软件
💻 C
字号:
// Copyright (C) 2005 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 1 June 2005 <nathan@codesourcery.com>// PR 20350: ICE on member specialization with later initialization// Origin: Carlo Wood carlo@gcc.gnu.orgtemplate <int i> struct Mutex{  static int mutex;};template <int i>int Mutex<i>::mutex = {1};template <> int Mutex<0>::mutex;template <> int Mutex<0>::mutex = 0;void g(){  Mutex<0>::mutex = 0;}

⌨️ 快捷键说明

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