reconciliation_lib 0.1
Library for data reconciliation algorithms
Loading...
Searching...
No Matches
dvr_assert.h File Reference
#include <stdexcept>
#include <string>
Include dependency graph for dvr_assert.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  dvrlib::assertion_error
 

Namespaces

namespace  dvrlib
 

Macros

#define dvr_assert(cond)
 

Macro Definition Documentation

◆ dvr_assert

#define dvr_assert (   cond)
Value:
do { \
if(!(cond)) \
throw dvrlib::assertion_error(#cond, __FILE__, __LINE__); \
} while(0)
Definition dvr_assert.h:9