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

Variadic template type not colored when expanded if adjacent to elipsis

Open Colengc opened this issue 5 years ago • 0 comments

Hi Jeff,

I noticed this one:

template <typename... types> class test {};

template <typename T>
void foo1(test<T>& t) { }

template <typename... types>
void foo2(test<types...>& t) { }

template <typename... types>
void foo3(test<types ...>& t) { }

In Dark+ :

image

Colengc avatar Nov 22 '19 04:11 Colengc