forked from boostorg/config
Use of template keyword was illegal, so removed it.
[SVN r21038]
This commit is contained in:
@@ -38,8 +38,8 @@ bool foo_17041(int j)
|
|||||||
int test()
|
int test()
|
||||||
{
|
{
|
||||||
foo f;
|
foo f;
|
||||||
int a = f.template bar<char>();
|
int a = f.bar<char>();
|
||||||
int b = f.template bar<2>();
|
int b = f.bar<2>();
|
||||||
if((a !=0) || (b != 1))return -1;
|
if((a !=0) || (b != 1))return -1;
|
||||||
|
|
||||||
if(0 == foo_17041<8>(8)) return -1;
|
if(0 == foo_17041<8>(8)) return -1;
|
||||||
|
Reference in New Issue
Block a user