/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #if defined(KERNEL) # include #else # include # define VERIFY assert # define VERIFY_NOT_REACHED() assert(false) static constexpr bool TODO = false; # define TODO() VERIFY(TODO) #endif