Adjust typenames of ConvertRect to avoid name collisions

pull/59/head
Jonathan G Rennison 6 years ago
parent 911ba8cb8b
commit 4bb8106c2a

@ -51,10 +51,10 @@ struct Rect16 {
int16 bottom;
};
template <typename IN, typename OUT>
OUT ConvertRect(const IN &in)
template <typename InT, typename OutT>
OutT ConvertRect(const InT &in)
{
OUT out;
OutT out;
out.left = in.left;
out.top = in.top;
out.right = in.right;

Loading…
Cancel
Save