Lioncash 1edf018319 common/math_util: Provide a template deduction guide for Common::Rectangle
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.
2019-05-31 04:44:02 -03:00
..
2018-11-21 03:43:41 -05:00
2019-02-06 22:20:57 -03:00
2018-10-02 16:04:10 +02:00
2019-04-25 08:07:57 -04:00
2019-04-25 08:07:57 -04:00