Skip to content
Snippets Groups Projects
  1. Jun 16, 2015
  2. Jun 09, 2015
  3. May 21, 2015
  4. May 11, 2015
  5. Apr 29, 2015
  6. Apr 20, 2015
  7. Apr 10, 2015
  8. Mar 15, 2015
  9. Mar 13, 2015
  10. Mar 12, 2015
  11. Mar 10, 2015
  12. Feb 27, 2015
  13. Feb 25, 2015
  14. Feb 12, 2015
  15. Feb 09, 2015
  16. Feb 06, 2015
    • Steffen Müthing's avatar
      [Utility] Add infrastructure to handle operator->() for both lvalues and proxies · 7623a530
      Steffen Müthing authored
      If an iterator facade (like entity iterators) wants to allow the
      embedded implementation to return either an (internally stored)
      reference or a temporary object and expose these two behaviors to enable
      performance optimizations, operator->() needs special handling: If the
      implementation returns a reference, operator->() in the facade can
      simply return the address of the referenced object, but if the returned
      object is a temporary, we need to capture and store it in a helper
      object to make sure it outlives the member access.
      
      This patch adds a little helper function that tansparently handles both
      cases.
      7623a530
Loading