Author Topic: Find variable declaration?  (Read 3669 times)

Squeller

  • Guest
Find variable declaration?
« on: November 21, 2006, 03:06:16 pm »
Code
#include <iostream>
using namespace std;

int main() {
  int v = 5;
  int c;
  ...
  v *= v;

When rightclicking on v, I have "find declaration of v". Result is always: "Not found". Isn't it possible to find variable declarations? Am I expecting wrong?


Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: Find variable declaration?
« Reply #1 on: November 21, 2006, 03:18:09 pm »
Quote
When rightclicking on v, I have "find declaration of v". Result is always: "Not found". Isn't it possible to find variable declarations? Am I expecting wrong?

Yes, this functionality does not support local-scope tokens.
Be patient!
This bug will be fixed soon...