The  'Go to symbol definition' functionality works well for the classic way 
when jumping from a definition from/to a declaration written in the traditional 
way with the type in front of the function.
But it doesn't if the type is 'auto',
Example with C++ source file and a header file:
`//myfunctions.cpp
#include "myfunctions.h"
auto myNewFunction()->void{
    // do someting;
}
void myOldFunction(){
    // do something;
};

//myfunctions.h
auto myNewFunction()->void;
void myOldFunction();
`
Definition of "myNewFunction" not found.

-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3325
You are receiving this because you are subscribed to this thread.

Message ID: <geany/geany/issues/[email protected]>

Reply via email to