From 3c7ead0c8e9afba0fc56c677f230e4a274896faa Mon Sep 17 00:00:00 2001 From: Daniel Wallin Date: Sat, 17 Jan 2004 15:58:17 +0000 Subject: [PATCH] *** empty log message *** [SVN r1895] --- test/named_params_sfinae.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/named_params_sfinae.cpp b/test/named_params_sfinae.cpp index ed9c66a..86bc143 100755 --- a/test/named_params_sfinae.cpp +++ b/test/named_params_sfinae.cpp @@ -49,13 +49,15 @@ namespace test } template - void f(A0 const& a0, typename f_keywords::restrict::type = f_keywords()) + void f(A0 const& a0 + , typename f_keywords::restrict::type = f_keywords()) { f_impl(f_keywords()(a0)); } template - void f(A0 const& a0, A1 const& a1) + void f(A0 const& a0, A1 const& a1 + , typename f_keywords::restrict::type = f_keywords()) { f_impl(f_keywords()(a0, a1)); }