1. 31 May, 2019 1 commit
    • 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. 30 May, 2019 3 commits
  3. 29 May, 2019 2 commits
  4. 27 May, 2019 4 commits
  5. 26 May, 2019 9 commits
  6. 25 May, 2019 20 commits
  7. 24 May, 2019 1 commit