Merge pull request #546 from tvaneerd/patch-1

== instead of =
This commit is contained in:
Andrew Pardoe 2016-03-20 09:53:52 -07:00
commit 98aee93b0a

View File

@ -10207,7 +10207,7 @@ Note that this applies most urgently to library code and least urgently to stand
static double cached_result = COMPUTATION_OF_ZERO;
double result;
if (cached_x = x)
if (cached_x == x)
return cached_result;
result = computation(x);
cached_x = x;