blob: 6b5bf95a42593372c3b59a6fdb074ac40358fa65 (
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
|
// Copyright (C) 2019 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#ifndef ISC_ASSERT_H
#define ISC_ASSERT_H
#include <exceptions/exceptions.h>
namespace isc {
/// @brief Replacement for assert() that throws if the expression is false.
/// This macro exists because some of the original code uses assert() and we
/// decided it would be better to replace them with exception throws rather
/// than compiling out all asserts.
#define isc_throw_assert(expr) \
{\
if(!(static_cast<bool>(expr))) \
{\
isc_throw(isc::Unexpected, __FILE__ << ":" << __LINE__ << " (" << #expr << ") failed");\
}\
}
}
#endif // ISC_ASSERT_H
|