-
Notifications
You must be signed in to change notification settings - Fork 185
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
Cannot perform member access on this type #83
Comments
@ryanfleury This also happens when trying to access a pointer, but dereferencing it and then access the members using '.' works |
Reproduced the reference @Husamdababneh it should work on pointers. Can you be more specific about what you're seeing? Are your pointers modified in any way, e.g. |
Fixed accessing reference members in f11b128. |
Fixed constant pointer/reference member accesses in f75ee24. Regular pointers should work, so I think I've addressed the bug you were referencing @Husamdababneh. Let me know if that is not the case. |
@ryanfleury Yes It was actually const pointer, thank you This following image is just to make it clear for other readers (Watch window, last two lines) |
Cool. Yep, this should be fixed now. |
@ryanfleury , I'm very sorry, but another thing I just noticed, dereferencing the pointer does not do anything , if this is already fixed just ignore this comment |
That should be fixed in 2a27b5a. |
Member access through references don't work
The text was updated successfully, but these errors were encountered: