Closed
Description
Type: LanguageService
The syntax highlighter does not seem to pick up on types declared by the typename keyword. For example, the code:
template<typename Node>
class Face;template<typename Node>
class Edge;template<typename Node>
class Cell
{
public:
typedef Face<Node> FaceType;
typedef Edge<Node> EdgeType;
};
The syntax highlighter should be highlighting Node within the templates as a type. If there is a setting I am missing, please advise, but I think this might be a bug within the Language Service.
Describe the bug
- OS and Version: Windows 10
- VS Code Version: 1.27.2
- C/C++ Extension Version: 0.19.0