optimize4.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 32 行

C
32
字号
// Build don't link:// // Copyright (C) 2001 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 24 Jul 2001 <nathan@codesourcery.com>// Bug 3543. We forgot to resolve an OFFSET_REFstruct Writeable {  bool blocking_mode;};struct Pipe : Writeable {  void ewrite();  void set_write_blocking ()  {    if (Writeable::blocking_mode);  }};void Pipe::ewrite(){  set_write_blocking();}void ewrite(Pipe &p){  p.set_write_blocking();}

⌨️ 快捷键说明

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