better-cpp-syntax icon indicating copy to clipboard operation
better-cpp-syntax copied to clipboard

The keyword constexpr is not highlighted

Open 24bit-xjkp opened this issue 2 years ago • 0 comments

Checklist

  • [x] This problem exists even with the setting "C_Cpp.enhancedColorization": "Disabled"

The code with a problem is:

int main()
{
    constexpr std::size_t highlight{};
    const ::std::size_t highlight2{};
    ::std::size_t const highlight3{};
    ::std::size_t constexpr highlight4{};
    constexpr ::std::size_t no_highlight{};
}

It looks like:

image

It should look like:

The keyword constexpr should be highlighted.

24bit-xjkp avatar Dec 30 '23 10:12 24bit-xjkp