代码搜索:contributed

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

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

c template-id-1.c

// Copyright (C) 2002 Free Software Foundation // Origin: C++/1058 // Contributed by Gabriel Dos Reis // { dg-do compile } struct A { typedef int Y; typedef doubl
www.eeworm.com/read/162614/5519274

c ntp2.c

// { dg-do compile } // Copyright (C) 2002 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 26 Dec 2002 // PR 3784: We were confusing non-type template parms
www.eeworm.com/read/162614/5519288

c nontype10.c

// { dg-do compile } // Contributed by: Giovanni Bajo #include template struct A {}; template struct B {}; A a; B b; /
www.eeworm.com/read/162614/5519302

c lookup2.c

// { dg-do compile } // Copyright (C) 2003 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 27 Mar 2003 // PR 11617: Failed to diagnose missing function. st
www.eeworm.com/read/162614/5519319

c ptrmem2.c

// { dg-do compile } // Copyright (C) 2001 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 31 Dec 2001 // We'd tsubst a pointer to member reference struct
www.eeworm.com/read/162614/5519330

c memfriend5.c

// { dg-do compile } // Copyright (C) 2003 Free Software Foundation // Contributed by Kriang Lerdsuwanakij // Member template function of member class template as fr
www.eeworm.com/read/162614/5519331

c memfriend12.c

// { dg-do compile } // Copyright (C) 2004 Free Software Foundation // Contributed by Kriang Lerdsuwanakij // Nested class of class template as friend template
www.eeworm.com/read/162614/5519341

c memfriend3.c

// { dg-do compile } // Copyright (C) 2003 Free Software Foundation // Contributed by Kriang Lerdsuwanakij // Member function of class template as friend template
www.eeworm.com/read/162614/5519344

c dependent-expr1.c

// { dg-do compile } // Copyright (C) 2003 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 30 Jun 2003 // PR c++ 9779. ICE struct I { }; void Foo (int);
www.eeworm.com/read/162614/5519354

c nontype9.c

// { dg-do compile } // Contributed by: Giovanni Bajo int i; template struct g { void foo(void) { FN (); } }; void h () { i = 7; } te