Bug 1364

Summary: Typo in trace-value.h
Product: ns-3 Reporter: Salva Climent <jocliba>
Component: coreAssignee: Mathieu Lacage <mathieu.lacage>
Status: RESOLVED FIXED    
Severity: critical CC: ns-bugs
Priority: P5    
Version: ns-3.13   
Hardware: All   
OS: All   

Description Salva Climent 2012-02-21 05:55:19 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 ());
Comment 1 Mathieu Lacage 2012-02-21 09:11:44 UTC
changeset: 67b5ca303a81

thanks!