repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
inherit
/
thunk6.C
blob
b8e316d087b6a663878964b3832549fccc77cc89
1
// PR c++/26957
2
3
struct LongDouble {
4
char ld[16];
5
};
6
7
struct DynAny {
8
virtual void insert_longdouble(LongDouble value) = 0;
9
};
10
11
struct TAO_DynCommon : public virtual DynAny {
12
virtual void insert_longdouble (LongDouble value);
13
};
14
15
void TAO_DynCommon::insert_longdouble (LongDouble value) { }
16