Commit 37d055f8 by Paolo Carlini Committed by Paolo Carlini

valarray_name_lookup.cc: Fix typo.

2003-02-05  Paolo Carlini  <pcarlini@unitus.it>

	* testsuite/26_numerics/valarray_name_lookup.cc: Fix typo.

From-SVN: r62450
parent 07938cec
2003-02-05 Paolo Carlini <pcarlini@unitus.it>
* testsuite/26_numerics/valarray_name_lookup.cc: Fix typo.
2003-02-04 Nathan Myers <ncm@cantrip.org>
* testsuite/25_algorithms/min_max.cc (test02): Add.
......
......@@ -70,7 +70,7 @@ namespace My
Number cos(Number);
Number cosh(Number);
Number acosh(Number);
Number acos(Number);
Number sin(Number);
Number sinh(Number);
......@@ -102,7 +102,7 @@ int main()
v = cos(u);
v = cosh(u);
// v = acos(u); // 2003-02-01 XFAIL
v = acos(u);
v = sin(u);
v = sinh(u);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment