The keywords final, override are not highlighted.
https://en.cppreference.com/w/cpp/keyword
Which language seems to have the issue?
C++
Sample Code to Reproduce
class Book final
{
public:
std::string const& contents();
private:
std::string contents_;
}

P.S. microsoft/vscode#107071