From e5b490b6542c444aa8e263e50c50e09a4201c99f Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 15 Jun 2015 15:09:25 +0200 Subject: Fix isfinite/isinf/isnan code snippets --- doc/snippets/Cwise_boolean_not.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/snippets/Cwise_boolean_not.cpp') diff --git a/doc/snippets/Cwise_boolean_not.cpp b/doc/snippets/Cwise_boolean_not.cpp index 8b8e6fc95..40009f15a 100644 --- a/doc/snippets/Cwise_boolean_not.cpp +++ b/doc/snippets/Cwise_boolean_not.cpp @@ -2,4 +2,4 @@ Array3d v(1,2,3); v(1) *= 0.0/0.0; v(2) /= 0.0; cout << v << endl << endl; -cout << !isFinite(v) << endl; +cout << !isfinite(v) << endl; -- cgit v1.2.3