Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 3.1.0-rc1
-
None
-
5416557a0b9247e911180a7cce4a5ed3b0c0f351
Description
Find Usages and highlighting when the cursor is on Foo are wrong.
Broken by 376f77952e9c579043a26fcd6be33baed9fd1610.
If Bar is not anonymous, it works as expected.
struct Foo {}; // Find Usages is correct typedef struct { int Foo; // Find Usages finds all 3 } Bar; void func(void) { Bar bar; bar.Foo; // Find Usages finds all 3 }