linux下编程用 编译软件

源代码在线查看: inline1.c

软件大小: 49607 K
上传用户: IsABC
关键词: linux 编程 编译 软件
下载地址: 免注册下载 普通下载 VIP

相关代码

				// { dg-do compile }								// Copyright (C) 2002 Free Software Foundation, Inc.				// Contributed by Nathan Sidwell 26 Dec 2002 								// PR 4803. Used inline functions must have a definition.								inline void Foo1 ();  // { dg-warning "inline function" "" }				inline void Bar1 ();				template  inline void Foo2(T);   // { dg-warning "inline function" "" }				template  inline void Bar2(T);								void Baz ()				{				  Foo1 ();				  Foo2 (1);								  Bar1 ();				  Bar2 (1);				}								inline void Bar1 () {}				template  inline void Bar2(T) {}							

相关资源