-
Notifications
You must be signed in to change notification settings - Fork 346
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
Refactor all code to use QSharePointer and std::vector #205
Conversation
…ch-from-ref-to-shared-pointer
… Pointer resolves #76
This pull request introduces 7 alerts when merging 0f768f9 into 8a36df7 - view on LGTM.com new alerts:
|
Question: Why did you decide to use |
Hello @StefanoD
For the |
Code base was extensivelly using classes: Ref, Counted as a way for reference counted pointers. These classes where replaced by the use of QSharedPointer
Moreover, Array and ArrayRef were replaced by std::vector and QSharedPointerstd::vector.
This PR resolves all warnings/errors produced by Vlargind.
Also, it could solve issues: #202 & #61