aboutsummaryrefslogtreecommitdiffhomepage
path: root/tdutils/td/utils/check.h
blob: 4f077ce816aca962cfe75a9d0bd0ddc714a63edd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2025
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once

#define TD_DUMMY_CHECK(condition) ((void)(condition))

#define CHECK_IMPL(condition, file, line)                      \
  if (!(condition)) {                                          \
    ::td::detail::process_check_error(#condition, file, line); \
  }

#define CHECK(condition) CHECK_IMPL(condition, __FILE__, __LINE__)

// clang-format off
#ifdef NDEBUG
  #define DCHECK TD_DUMMY_CHECK
#else
  #define DCHECK CHECK
#endif
// clang-format on

#define UNREACHABLE() ::td::detail::process_check_error("Unreachable", __FILE__, __LINE__)

namespace td {
namespace detail {

[[noreturn]] void process_check_error(const char *message, const char *file, int line);

}  // namespace detail
}  // namespace td