代码搜索:overloading
找到约 1,176 项符合「overloading」的源代码
代码结果 1,176
www.eeworm.com/read/340665/3275517
c overload11.c
// Build don't link:
// GROUPS passed overloading
class foo_int
{
public:
int & i;
foo_int (int &j) : i(j) {};
void inc () { i++; }
};
www.eeworm.com/read/340665/3276214
c warning3.c
// Bug: overloading of 'A' for template causes bogus shadowing warnings.
// Special g++ Options: -Wshadow
// Build don't link:
template
class A
{
public:
virtual ~A() {}
};
template cl
www.eeworm.com/read/440906/1774918
c spec2.c
// { dg-do compile }
// Origin:
// Bug: Overloading of ordinary and template member function
// which enclosing class is specialized is not handled correctl
www.eeworm.com/read/440906/1777050
c overload3.c
// Build don't link:
// GROUPS passed overloading
typedef int rutBoolean;
class rutBigIntRep
{
public:
friend rutBoolean operator>(const rutBigIntRep& a, const rutBigIntRep& b);
operator rutBool
www.eeworm.com/read/440906/1777149
c overload11.c
// Build don't link:
// GROUPS passed overloading
class foo_int
{
public:
int & i;
foo_int (int &j) : i(j) {};
void inc () { i++; }
};
www.eeworm.com/read/440906/1777846
c warning3.c
// Bug: overloading of 'A' for template causes bogus shadowing warnings.
// Special g++ Options: -Wshadow
// Build don't link:
template
class A
{
public:
virtual ~A() {}
};
template cl
www.eeworm.com/read/422060/2046087
phpt array_020.phpt
--TEST--
SPL: ArrayIterator overloading
--SKIPIF--
--FILE--
www.eeworm.com/read/366702/2868397
c spec2.c
// { dg-do compile }
// Origin:
// Bug: Overloading of ordinary and template member function
// which enclosing class is specialized is not handled correctl
www.eeworm.com/read/366702/2869940
c ttp55.c
// { dg-do assemble }
// Testing overloading of function argument involving template template
// parameters
// Reported by Thomus Kunert
template
class H{};
www.eeworm.com/read/366702/2871023
c overload3.c
// { dg-do assemble }
// GROUPS passed overloading
typedef int rutBoolean;
class rutBigIntRep
{
public:
friend rutBoolean operator>(const rutBigIntRep& a, const rutBigIntRep& b);
operator rutBoo