repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
lto
/
20081125.h
blob
bc470040a67299eddce85675f372fd637f57e7f4
1
class
base
2
{
3
public
:
4
base
() {}
5
virtual
~
base
() {}
6
static
base
*
factory
(
void
);
7
};
8
9
class
object
:
public
base
10
{
11
public
:
12
object
() {}
13
object
(
int
);
14
virtual
void
key_method
(
void
);
15
};