You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
440 B
37 lines
440 B
4 years ago
|
struct X
|
||
|
{
|
||
|
void operator deleteme(void *);
|
||
|
void deallocate(int *p)
|
||
|
{
|
||
|
operator delete((void *)p);
|
||
|
delete((void *)q);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
int f(bool b)
|
||
|
{
|
||
|
typedef int mytype;
|
||
|
if (b)
|
||
|
{
|
||
|
return(int(42.0));
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
return(mytype(42.0));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct X
|
||
|
{
|
||
|
double f(int n)
|
||
|
{
|
||
|
return(double(n));
|
||
|
}
|
||
|
};
|
||
|
|
||
|
inline value_type operator ()() const
|
||
|
{
|
||
|
return(double(rnd32()) * (0.5 / 0x80000000));
|
||
|
}
|
||
|
|