Skip to content
Snippets Groups Projects
  1. May 31, 2019
    • Lioncash's avatar
      common/math_util: Provide a template deduction guide for Common::Rectangle · 1edf0183
      Lioncash authored
      Allows for things such as:
      
      auto rect = Common::Rectangle{0, 0, 0, 0};
      
      as opposed to being required to explicitly write out the underlying
      type, such as:
      
      auto rect = Common::Rectangle<int>{0, 0, 0, 0};
      
      The only requirement for the deduction is that all constructor arguments
      be the same type.
      1edf0183
  2. Feb 27, 2019
  3. Nov 21, 2018
  4. Aug 02, 2018
  5. Apr 20, 2018
  6. Dec 26, 2016
  7. Nov 12, 2016
  8. Nov 05, 2016
  9. Sep 19, 2016
  10. Sep 18, 2016
  11. Jun 08, 2015
  12. May 22, 2015
  13. May 14, 2015
  14. May 07, 2015
  15. Dec 21, 2014
  16. Nov 18, 2014
  17. Aug 19, 2014
  18. Aug 17, 2014
  19. Apr 09, 2014
  20. Apr 08, 2014
  21. Apr 01, 2014
  22. Sep 05, 2013
Loading