When you define a template, VS 2019 shows a floating pop with the text <T> Provide sample template arguments for Intellisense
. You can supply a template type like int
, but is there a way to get this floating box to disappear without turning Intellisense off completely?
Example:
template <typename T> // popup box appears here after a few seconds, see image
struct POINT {
T x, y;
}