代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/470720/1445777
c typename7.c
// Test for implicit typename
// Build don't link:
// Special g++ Options:
template
struct A {
protected:
typedef struct B { } B;
};
template
struct C { };
template
www.eeworm.com/read/470720/1447173
c addrfunc2.c
// Test for implicit & on methods.
// Contributed by Jason Merrill .
// Special g++ Options: -fms-extensions
struct A {
void f (int = 0) { }
};
int
main ()
{
void (A::*p)(int)
www.eeworm.com/read/470720/1447656
c 900205_04.c
// g++ 1.36.1 bug 900205_04
// g++ allows a class for which an implicit default X::X() constructor must
// be created (implicitly by the compiler) to be derived from another class
// which does not h
www.eeworm.com/read/470693/1456370
c instantiate3.c
// Test that 'inline template' instantiates the vtable.
// { dg-do compile }
// { dg-options "-O -fno-implicit-templates" }
template struct A {
virtual void f () { }
};
inline template st
www.eeworm.com/read/470693/1457723
c typename7.c
// Test for implicit typename
// Build don't link:
// Special g++ Options:
template
struct A {
protected:
typedef struct B { } B;
};
template
struct C { };
template
www.eeworm.com/read/470693/1459119
c addrfunc2.c
// Test for implicit & on methods.
// Contributed by Jason Merrill .
// Special g++ Options: -fms-extensions
struct A {
void f (int = 0) { }
};
int
main ()
{
void (A::*p)(int)
www.eeworm.com/read/470693/1459602
c 900205_04.c
// g++ 1.36.1 bug 900205_04
// g++ allows a class for which an implicit default X::X() constructor must
// be created (implicitly by the compiler) to be derived from another class
// which does not h
www.eeworm.com/read/460526/1560701
f90 game.f90
module GAME_DATA
use global
implicit none
integer, parameter :: SX = 240, SY = 440
integer, parameter :: BoundX = 20, BoundY = 20
integer, parameter :: BoardWidth = SX-BoundX*2
integ
www.eeworm.com/read/240162/4579104
c instantiate3.c
// Test that 'inline template' instantiates the vtable.
// { dg-do compile }
// { dg-options "-O -fno-implicit-templates" }
template struct A {
virtual void f () { }
};
inline template st
www.eeworm.com/read/240162/4580966
c typename7.c
// { dg-do assemble }
// { dg-options "" }
// Test for implicit typename
template
struct A {
protected:
typedef struct B { } B;
};
template
struct C { };
template
s