Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

function definitions sometimes treated as function call #242

Closed
matter123 opened this issue Jun 15, 2019 · 1 comment · Fixed by #244
Closed

function definitions sometimes treated as function call #242

matter123 opened this issue Jun 15, 2019 · 1 comment · Fixed by #244
Labels
🐛 Bug Something isn't working

Comments

@matter123
Copy link
Collaborator

Example Code:

iterator begin() noexcept { return __data(); }
const_iterator begin() const noexcept { return __data(); }
CharT *data() noexcept { return __data(); }
const CharT *data() const noexcept { return __data(); }
reference front() noexcept { return __data()[0]; }
const_reference front() const noexcept { return __data()[0]; }

Image:
Screenshot from 2019-06-15 10-46-12

@matter123 matter123 added 🐛 Bug Something isn't working 🔍 investigating More information is being gathered labels Jun 15, 2019
@matter123
Copy link
Collaborator Author

qualified_type does not match when the type ends in a keyword iterator and in_band.

matter123 added a commit that referenced this issue Jun 17, 2019
Qualified type now correctly matched
identifers that contain non type keywords.

Fixes: #242
@matter123 matter123 removed the 🔍 investigating More information is being gathered label Jun 27, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 Bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant