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
Update ChangeLog and version files for release
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
call4.C
blob
1f7eb4c8208de5afe056e19766b6e922b58c66ed
1
// PR c++/25364
2
3
class OFX_PropertySuiteV1
4
{
5
static int propGetDouble ();
6
};
7
template<int dimension,
8
class T,
9
int (*PROPGET)()
10
>
11
struct OFX_AnimatedNumberParam
12
{
13
virtual int paramSetValueAtTime()
14
{
15
return PROPGET();
16
}
17
};
18
void f()
19
{
20
new OFX_AnimatedNumberParam<2,double,OFX_PropertySuiteV1::propGetDouble>();
21
}