2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 08:38:21 +00:00
|
|
|
*/
|
|
|
|
|
2018-10-10 09:53:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-02-23 07:33:03 +00:00
|
|
|
#if defined(KERNEL)
|
|
|
|
# include <Kernel/Assertions.h>
|
|
|
|
#else
|
|
|
|
# include <assert.h>
|
2021-06-07 12:00:29 +00:00
|
|
|
# define VERIFY assert
|
2021-10-30 21:55:49 +00:00
|
|
|
# define VERIFY_NOT_REACHED() assert(false) /* NOLINT(cert-dcl03-c,misc-static-assert) No, this can't be static_assert, it's a runtime check */
|
2021-08-03 20:02:19 +00:00
|
|
|
static constexpr bool TODO = false;
|
|
|
|
# define TODO() VERIFY(TODO)
|
2019-08-02 07:23:03 +00:00
|
|
|
#endif
|