Bugzilla – Bug 1364
Typo in trace-value.h
Last modified: 2012-02-21 09:11:44 UTC
If I'm not mistaken this is a very severe bug. In trace-value.h line 377, the operation *x is defined but a subtraction is done: return TracedValue<T> (lhs - rhs.Get ()); It should be: return TracedValue<T> (lhs * rhs.Get ());
changeset: 67b5ca303a81 thanks!