Browse Source

attempt to fix CI (#2113)

fix CI build
pull/2114/head
qndel 5 years ago committed by GitHub
parent
commit
4ba2c755c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Source/engine.h

2
Source/engine.h

@ -205,7 +205,7 @@ struct Point {
{
Point offset = abs(*this - other);
return std::max(offset.x, offset.y);
return std::max<int>(offset.x, offset.y);
}
};

Loading…
Cancel
Save