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

📄 visibility27.c

📁 gcc-you can use this code to learn something about gcc, and inquire further into linux,
💻 C
字号:
// Build don't link: // GROUPS passed visibility// visibility file// From: jbuck@synopsys.com (Joe Buck)// Date:     3 Aug 1994 01:52:04 GMT// Subject:  2.6.0 bug with protected members and virtual baseclasses// Message-ID: <31mt84$lfq@hermes.synopsys.com>struct R {protected:        virtual void foo();};struct A : public R {};struct B : virtual public A {        void bletch() { foo();}};

⌨️ 快捷键说明

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