代码搜索:Contributed

找到约 10,000 项符合「Contributed」的源代码

代码结果 10,000
www.eeworm.com/read/162614/5518998

c inherit.c

// Contributed by Gabriel Dos Reis // { dg-do compile } template struct X { void f() { } }; struct Z : X { }; int main() { Z z; z.X::f();
www.eeworm.com/read/162614/5519124

c qualttp5.c

// Copyright (C) 2001 Free Software Foundation // Contributed by Kriang Lerdsuwanakij // { dg-do compile } template struct A { template class B {
www.eeworm.com/read/162614/5519139

c warn1.c

// { dg-do compile } // { dg-options "-Wall" } // Copyright (C) 2003 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 14 Aug 2003 // PR 11512. erroneous warn
www.eeworm.com/read/162614/5519153

c array1-1.c

// { dg-do compile } // { dg-options "-fabi-version=1" } // Contributed by Nathan Sidwell 22 Dec 2003 // Origin: Roger Sayle // PR c++/12774 Array dom
www.eeworm.com/read/162614/5519194

c unify6.c

// Copyright (C) 2004 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 1 Apr 2004 void Baz (); template void Foo1 (T *); // #1 template
www.eeworm.com/read/162614/5519342

c array2-2.c

// { dg-do compile } // { dg-options "-fabi-version=2" } // Copyright (C) 2003 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 29 Dec 2003 // PR c++/13494.
www.eeworm.com/read/162614/5519364

c array2-1.c

// { dg-do compile } // { dg-options "-fabi-version=1" } // Copyright (C) 2003 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 29 Dec 2003 // PR c++/13494.
www.eeworm.com/read/162614/5519414

c array1-2.c

// { dg-do compile } // { dg-options "-fabi-version=2" } // Contributed by Nathan Sidwell 22 Dec 2003 // Origin: Roger Sayle // PR c++/12774 Array dom
www.eeworm.com/read/162614/5519500

c inline1.c

// { dg-do assemble } // { dg-options "-ansi -pedantic-errors -O2" } // Copyright (C) 1999 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 29 Nov 1999 struct Foo {
www.eeworm.com/read/162614/5519643

c local3.c

// { dg-do run } // Bug: g++ lies about DECL_CONTEXT, so the backend thinks B::f is not // function-local. // Contributed by Jason Merrill struct A { virtual void f () = 0; };