![]() |
Imt.Base C++ API V4.1.1.0
|
#include <Imt.Base.Core.Diagnostics/AssertActionManager.h>
#include <Imt.Base.Core.Platform/Platform.h>
Go to the source code of this file.
Functions | |
void | ASSERT_EX1 (bool const condition, char_t const *const pMessage) noexcept |
"Assert and throw exception" (ASSERT_EX). | |
void | ASSERT_EX (bool const condition) noexcept |
void | ASSERT_DEBUG1 (bool const condition, char_t const *const pMessage) noexcept |
"Assert for debugging only" (ASSERT_DEBUG). | |
void | ASSERT_DEBUG (bool const condition) noexcept |
|
inlinenoexcept |
Definition at line 88 of file Diagnostics.h.
"Assert for debugging only" (ASSERT_DEBUG).
Use this sort of assertion only while debugging. This flavor of asserts will be compiled only for a debug build on the the developer machine and on the target as well.
condition | When this condition evaluates to false the handler will be called |
pMessage | The message to specify the error that has occurred |
Definition at line 77 of file Diagnostics.h.
|
inlinenoexcept |
Definition at line 66 of file Diagnostics.h.
"Assert and throw exception" (ASSERT_EX).
Even so we do not have exception support use this function to test conditions for which it is not secure to continue safely when the condition evaluates to false. The registered handler is responsible to react appropriately. There is a second version of this macro with a postfix of 1. It takes additionally a second parameter. This parameter is for future extensions in the debugging environment. It takes a c-string which will be used to indicate the reason of the failure.
condition | When this condition evaluates to false the handler will be called |
pMessage | The message to specify the error that has occurred |
Definition at line 55 of file Diagnostics.h.