From e5e2fc031608b980df6940357b65a0df33bab2fc Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Tue, 8 Jun 2010 22:54:24 +0000 Subject: [PATCH] Changed "times" to "multiplies" as per #3820; fixes #3820 [SVN r62606] --- doc/reference.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/reference.html b/doc/reference.html index b804681..907309e 100644 --- a/doc/reference.html +++ b/doc/reference.html @@ -540,7 +540,7 @@ of values at each level of the nested container hierarchy may change.

SizeList Requirements. SizeList must model Collection.

Preconditions. 

-std::accumulate(sizes.begin(),sizes.end(),size_type(1),std::times<size_type>()) == this->num_elements();
+std::accumulate(sizes.begin(),sizes.end(),size_type(1),std::multiplies<size_type>()) == this->num_elements();
 sizes.size() == NumDims;
 

Postconditions.  std::equal(sizes.begin(),sizes.end(),this->shape) == true;