summaryrefslogtreecommitdiffstats
path: root/src/common/assert.cpp
blob: b20c1912387a92bf83be7400cca49f93f3fa22d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "common/assert.h"
#include "common/common_funcs.h"

#include "common/settings.h"

void assert_check_condition(bool cond, std::function<void()>&& on_failure) {
    if (!cond) {
        on_failure();

        if (Settings::values.use_debug_asserts) {
            Crash();
        }
    }
}

[[noreturn]] void unreachable_impl() {
    Crash();
    throw std::runtime_error("Unreachable code");
}