| Summary: | cstring C++ standarts conformance | ||||||
|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Vasily v. Levchenko <vasily.v.levchenko> | ||||
| Component: | TPTP | Assignee: | Guru Nagarajan <guru.nagarajan> | ||||
| Status: | CLOSED FIXED | QA Contact: | |||||
| Severity: | trivial | ||||||
| Priority: | P1 | CC: | asaf.yaffe | ||||
| Version: | unspecified | Keywords: | plan | ||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Windows XP | ||||||
| Whiteboard: | closed460 | ||||||
| Attachments: |
|
||||||
Already fixed in latest 4.5/HEAD branch setting ver As of TPTP 4.6.0, TPTP is in maintenance mode and focusing on improving quality by resolving relevant enhancements/defects and increasing test coverage through test creation, automation, Build Verification Tests (BVTs), and expanded run-time execution. As part of the TPTP Bugzilla housecleaning process (see http://wiki.eclipse.org/Bugzilla_Housecleaning_Processes), this enhancement/defect is verified/closed by the Project Lead since this enhancement/defect has been resolved and unverified for more than 1 year and considered to be fixed. If this enhancement/defect is still unresolved and reproducible in the latest TPTP release (http://www.eclipse.org/tptp/home/downloads/), please re-open. As of TPTP 4.6.0, TPTP is in maintenance mode and focusing on improving quality by resolving relevant enhancements/defects and increasing test coverage through test creation, automation, Build Verification Tests (BVTs), and expanded run-time execution. As part of the TPTP Bugzilla housecleaning process (see http://wiki.eclipse.org/Bugzilla_Housecleaning_Processes), this enhancement/defect is verified/closed by the Project Lead since this enhancement/defect has been resolved and unverified for more than 1 year and considered to be fixed. If this enhancement/defect is still unresolved and reproducible in the latest TPTP release (http://www.eclipse.org/tptp/home/downloads/), please re-open. |
Created attachment 83606 [details] fix strchr C++ conformance Hi folks, I've noticed some incorrect using of const-less strchr in Martini/Infrastructure/common/bootloaderoptionparser.cpp sources that has got an error severity in modern compilers. hint: char *strchr( const char *str, int c ); // C only char *strchr( char *str, int c ); // C++ only const char *strchr( const char * str, int c ); // C++ only solution see in attached patch