From: bangerth Date: Sat, 11 Oct 2008 02:45:03 +0000 (+0000) Subject: Only use 9 arguments. 10 doesn't work any more. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b946df65b8c9492ffeb650f3cf14ac1231710c3;p=dealii-svn.git Only use 9 arguments. 10 doesn't work any more. git-svn-id: https://svn.dealii.org/trunk@17182 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/base/threads.pl b/tests/base/threads.pl index 34bfe910f6..ef4065c85a 100644 --- a/tests/base/threads.pl +++ b/tests/base/threads.pl @@ -2,7 +2,7 @@ # $Id$ # Version: $Name$ # -# Copyright (C) 2003, 2004, 2005, 2007 by the deal.II authors +# Copyright (C) 2003, 2004, 2005, 2007, 2008 by the deal.II authors # # This file is subject to QPL and may not be distributed # without copyright and license information. Please refer @@ -15,7 +15,7 @@ # # The idea of the generated file is: have classes X which # are not convertible into each other, and have functions with -# 0..10 arguments of types X<1>..X<10>, with reference and/or +# 0..9 arguments of types X<1>..X<9>, with reference and/or # constant arguments, being virtual, static, or const. This way, # we check all possible spawn(...) combinations and all possible # combinations of arguments. Since the argument types are not @@ -23,7 +23,7 @@ # no typos like "Arg4, Arg4" instead of "Arg4, Arg5", that might # otherwise sneak in. -$N=10; +$N=9; print "// This file is automatically generated by threads.pl. Don't modify it\n"; print "#include \"../tests.h\"\n";