Euphoria
Classes | Namespaces | Macros
assert.h File Reference
#include <string>
#include <vector>

Go to the source code of this file.

Namespaces

namespace  eu
 
namespace  eu::assertlib
 

Macros

#define BREAK_IN_DEBUG()
 implements a break in debug.
 
#define __PRETTY_FUNCTION__   __FUNCSIG__
 
#define IMPLEMENT_ASSERT_LIB
 Defines that the assert support library should be implemented.
 
#define ASSERT(x)
 Assert that a value is true.
 
#define ASSERTX(x, ...)
 Assert that a value is true.
 
#define DIE(message)
 Assert that something bad has happened.
 
#define DIEX(message, ...)
 Assert that something bad has happened.
 

Macro Definition Documentation

◆ __PRETTY_FUNCTION__

#define __PRETTY_FUNCTION__   __FUNCSIG__

Definition at line 25 of file assert.h.

◆ ASSERT

#define ASSERT (   x)

Assert that a value is true.

Parameters
xthe value to check.

Definition at line 36 of file assert.h.

◆ ASSERTX

#define ASSERTX (   x,
  ... 
)

Assert that a value is true.

Parameters
xthe value to check.
...any extra value to attach to the assert message

Definition at line 59 of file assert.h.

◆ BREAK_IN_DEBUG

#define BREAK_IN_DEBUG ( )

implements a break in debug.

Definition at line 8 of file assert.h.

◆ DIE

#define DIE (   message)

Assert that something bad has happened.

Parameters
messagethe reason to fail.

Definition at line 81 of file assert.h.

◆ DIEX

#define DIEX (   message,
  ... 
)

Assert that something bad has happened.

Parameters
messagethe reason to fail.
...any extra value to attach to the assert message

Definition at line 94 of file assert.h.

◆ IMPLEMENT_ASSERT_LIB

#define IMPLEMENT_ASSERT_LIB

Defines that the assert support library should be implemented.

Todo:
Expose as as cmake variable instead of looking at the build flag.

Definition at line 30 of file assert.h.