example
#include <stdint.h>
template <class T>
struct Test {
uint32_t operator()() {
uint32_t test = 0; //auto-completion work properly in here
return test;
}
};
template <>
struct Test<float> {
uint32_t operator()() {
uint32_t //Auto-completion does not work properly when I type uint32_t
return test;
}
};