[Github-comments] [geany] Don't show the goto popup for typedef synonyms (#923)
Colomban Wendling
notifications at xxxxx
Fri Mar 4 18:55:57 UTC 2016
BTW, to please @elextr here's a C++ overloaded version for testing (behaves correctly with all versions AFAICT):
```C++
class Foo {
public:
int method(void);
int method(int x);
int method(int x, int y);
int method(float x);
Foo() {
method();
}
};
int Foo::method() { return 0; }
int Foo::method(int x) { return x; }
int Foo::method(int x, int y) { return x * y; }
int Foo::method(float x) { return static_cast<int>(x); }
```
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/923#issuecomment-192408816
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20160304/7557be20/attachment.html>
More information about the Github-comments
mailing list