Remove redundant semicolons

This commit is contained in:
Dr. Dystopia
2024-08-18 15:08:44 +02:00
parent 4ff5ff2772
commit 9602f36248
48 changed files with 72 additions and 70 deletions

View File

@ -47,7 +47,7 @@ LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
}
return DefWindowProc(hwnd, uMsg, wParam, lParam);
}
}; // namespace
} // namespace
constexpr int PROGRESSBAR_FLAGS = WS_VISIBLE | WS_CHILD | PBS_SMOOTH | PBS_SMOOTHREVERSE;
constexpr int WINDOW_FLAGS = WS_CLIPCHILDREN;
@ -305,4 +305,4 @@ void SetVisible(bool visible)
ShowWindow(window_handle, visible ? SW_SHOW : SW_HIDE);
}
}; // namespace UI
} // namespace UI