Environment
- OS and Version: Windows 10
- VS Code Version: 1.108.2
- C/C++ Extension Version: C/C++ v1.32.2
- If using SSH remote, specify OS of remote machine: none
Bug Summary and Steps to Reproduce
Bug Summary:
No result found when using 'Peek References' on struct members.
Steps to reproduce:
- Paste code (file.hpp):
struct MyStruct
{
int value;
};
struct Container
{
int value2;
MyStruct *myStruct;
};
void func(Container *container)
{
container->myStruct = 0;
}
void func2(Container *container)
{
container->value2 = 1;
container->myStruct = 0;
}
- Use 'Peek References' option (Shift+F12) when over 'myStruct' or 'value2' variable (inside function or at struct definition).
- See 'No references found for 'myStruct'.
Expected behavior:
Peek windows should appear and show all places where 'myStruct' member is used.
Configuration and Logs
Other Extensions
No response
Additional context
No response
Environment
Bug Summary and Steps to Reproduce
Bug Summary:
No result found when using 'Peek References' on struct members.
Steps to reproduce:
Expected behavior:
Peek windows should appear and show all places where 'myStruct' member is used.
Configuration and Logs
ask for specific detailsOther Extensions
No response
Additional context
No response