You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 24, 2022. It is now read-only.
Currently some classes (especially in the parser and the optimizer) have their getter methods return pointers (*) to objects while some return references (&) to objects. As Jignesh suggested, would it better if we follow certain style guide and uniform the style of the existing code? Say, only return pointers if the returning value can be NULL or is yielding ownership, otherwise return references.