| Summary: | Wrong coloring of template template parameters | ||
|---|---|---|---|
| Product: | [Tools] CDT | Reporter: | Dennis Schieferdecker <master_of_past_and_present> |
| Component: | cdt-editor | Assignee: | Anton Leherbauer <aleherb+eclipse> |
| Status: | RESOLVED FIXED | QA Contact: | Anton Leherbauer <aleherb+eclipse> |
| Severity: | normal | ||
| Priority: | P3 | CC: | cdtdoug, malaperle |
| Version: | 8.0 | ||
| Target Milestone: | 8.0 | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
Fixed in HEAD. *** cdt cvs genie on behalf of aleherbau *** Bug 340492 - Wrong coloring of template template parameters [*] SemanticHighlightings.java 1.32 http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.cdt/all/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/SemanticHighlightings.java?root=Tools_Project&r1=1.31&r2=1.32 [*] SemanticHighlightingTest.java 1.19 http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.cdt/all/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/SemanticHighlightingTest.java?root=Tools_Project&r1=1.18&r2=1.19 [*] SHTest.cpp 1.8 http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.cdt/all/org.eclipse.cdt.ui.tests/resources/semanticHighlighting/SHTest.cpp?root=Tools_Project&r1=1.7&r2=1.8 |
Build Identifier: 20100917-0705 The syntax coloring for templated template parameters is wrong. Instead of using the color scheme for template parameters (default: bold brown), the color scheme for classes (default: green) is used. Reproducible: Always Steps to Reproduce: 1. Create class template: template< template<class> U > class myClass {}; 2. Watch the color of U be green (class) instead of brown (template parameter)