Madeline Busig f2862f7c96 Add log::stream_type typedef
This addition is useful when an explicit template instantiation of
operator<< is needed, for example, when logging from an ARM mode
function. Example usage:

template mtl::log::stream_type& mtl::log::stream_type::operator<<
<uint16_t>(uint16_t);

ARM_MODE void foo(int16_t x) {
	mtl::log::debug << x; // Without the explicit template
	instantiation, an ODR violation would occur.
}
2024-07-28 18:08:21 -06:00
..
2024-03-13 00:36:58 -06:00
2024-07-21 21:55:13 -06:00
2024-07-28 18:08:21 -06:00
2024-07-26 11:03:08 -06:00
2024-03-25 21:17:03 -06:00
2024-03-25 21:17:03 -06:00
2024-03-26 23:06:58 -06:00
2024-07-25 22:55:47 -06:00