userver: userver/utils/assert.hpp File Reference
Loading...
Searching...
No Matches
assert.hpp File Reference

Detailed Description

Assertion macros UASSERT, UASSERT_MSG, UINVARIANT.

Definition in file assert.hpp.

Go to the source code of this file.

#include <string_view>
+ Include dependency graph for assert.hpp:

Namespaces

namespace  utils
 Utilities.
 

Macros

#define UASSERT_MSG(expr, msg)
 Assertion macro for that aborts execution in DEBUG builds with a message msg and does nothing in release builds.
 
#define UASSERT(expr)
 Assertion macro that aborts execution in DEBUG builds and does nothing in release builds.
 
#define UINVARIANT(condition, message)
 Asserts in debug builds, throws utils::InvariantError in release.
 

Macro Definition Documentation

◆ UASSERT

#define UASSERT ( expr)

Assertion macro that aborts execution in DEBUG builds and does nothing in release builds.

Examples
samples/http_caching/http_caching.cpp.

Definition at line 53 of file assert.hpp.

◆ UASSERT_MSG

#define UASSERT_MSG ( expr,
msg )

Assertion macro for that aborts execution in DEBUG builds with a message msg and does nothing in release builds.

Examples
samples/flatbuf_service/flatbuf_service.cpp.

Definition at line 37 of file assert.hpp.

◆ UINVARIANT

#define UINVARIANT ( condition,
message )

Asserts in debug builds, throws utils::InvariantError in release.

Examples
postgresql/functional_tests/basic_chaos/postgres_service.cpp.

Definition at line 59 of file assert.hpp.