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. May 30, 2019
  3. May 29, 2019
  4. May 27, 2019
  5. May 26, 2019
  6. May 25, 2019
  7. May 24, 2019
Loading