Technote (troubleshooting)
Problem(Abstract)
Attempts to bulid a model with char* declaration in IBM Rational TAU results in the error "No matching infix operator".
Cause
This issue was identified as a product defect and logged under APAR PM32775.
Resolving the problem
The reported problem is fixed in Rational TAU Version 4.3.0.4
WORKAROUND: You need to Initialize the variable in start transition of statemachine.
Example:
Definition 'char*' myChar = "abc" + "def";
Should be transformed as below:
'char*' myChar;
start {
myChar = "abc" + "def";
....
}
Rate this page:
Copyright and trademark information
IBM, the IBM logo and ibm.com are trademarks of International Business Machines Corp., registered in many jurisdictions worldwide. Other product and service names might be trademarks of IBM or other companies. A current list of IBM trademarks is available on the Web at "Copyright and trademark information" at www.ibm.com/legal/copytrade.shtml.