Apply clang-tidy to code

This commit is contained in:
Anders Jenbo 2021-07-10 14:44:54 +02:00
commit 35ccc8eb1c
8 changed files with 71 additions and 71 deletions

View file

@ -21,7 +21,7 @@
namespace devilution {
namespace {
static void DrawHalfTransparentBlendedRectTo(const Surface &out, int sx, int sy, int width, int height)
void DrawHalfTransparentBlendedRectTo(const Surface &out, int sx, int sy, int width, int height)
{
BYTE *pix = out.at(sx, sy);
@ -34,7 +34,7 @@ static void DrawHalfTransparentBlendedRectTo(const Surface &out, int sx, int sy,
}
}
static void DrawHalfTransparentStippledRectTo(const Surface &out, int sx, int sy, int width, int height)
void DrawHalfTransparentStippledRectTo(const Surface &out, int sx, int sy, int width, int height)
{
BYTE *pix = out.at(sx, sy);