diff options
author | Andreas Kling <kling@serenityos.org> | 2021-02-23 20:42:32 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-23 20:56:54 +0100 |
commit | 5d180d1f996ead27f9c5cb3db7f91e293de34d9d (patch) | |
tree | e881854dac5d749518562970d6194a0ef65736ec /Userland/Services/WindowServer/WindowSwitcher.cpp | |
parent | b33a6a443e700cd80325d312f21c985b0687bb97 (diff) | |
download | serenity-5d180d1f996ead27f9c5cb3db7f91e293de34d9d.zip |
Everywhere: Rename ASSERT => VERIFY
(...and ASSERT_NOT_REACHED => VERIFY_NOT_REACHED)
Since all of these checks are done in release builds as well,
let's rename them to VERIFY to prevent confusion, as everyone is
used to assertions being compiled out in release.
We can introduce a new ASSERT macro that is specifically for debug
checks, but I'm doing this wholesale conversion first since we've
accumulated thousands of these already, and it's not immediately
obvious which ones are suitable for ASSERT.
Diffstat (limited to 'Userland/Services/WindowServer/WindowSwitcher.cpp')
-rw-r--r-- | Userland/Services/WindowServer/WindowSwitcher.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/Services/WindowServer/WindowSwitcher.cpp b/Userland/Services/WindowServer/WindowSwitcher.cpp index 803887c657..df329aba7f 100644 --- a/Userland/Services/WindowServer/WindowSwitcher.cpp +++ b/Userland/Services/WindowServer/WindowSwitcher.cpp @@ -39,7 +39,7 @@ static WindowSwitcher* s_the; WindowSwitcher& WindowSwitcher::the() { - ASSERT(s_the); + VERIFY(s_the); return *s_the; } @@ -124,7 +124,7 @@ void WindowSwitcher::on_key_event(const KeyEvent& event) hide(); return; } - ASSERT(!m_windows.is_empty()); + VERIFY(!m_windows.is_empty()); int new_selected_index; @@ -135,7 +135,7 @@ void WindowSwitcher::on_key_event(const KeyEvent& event) if (new_selected_index < 0) new_selected_index = static_cast<int>(m_windows.size()) - 1; } - ASSERT(new_selected_index < static_cast<int>(m_windows.size())); + VERIFY(new_selected_index < static_cast<int>(m_windows.size())); select_window_at_index(new_selected_index); } @@ -154,7 +154,7 @@ void WindowSwitcher::select_window_at_index(int index) { m_selected_index = index; auto* highlight_window = m_windows.at(index).ptr(); - ASSERT(highlight_window); + VERIFY(highlight_window); WindowManager::the().set_highlight_window(highlight_window); redraw(); } |