mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-23 15:10:34 +00:00
6 lines
157 B
C
6 lines
157 B
C
#pragma once
|
|
|
|
#define JSON_ASSERT_MESSAGE(condition, message) \
|
|
if (!(condition)) \
|
|
xrpl::Throw<json::Error>(message);
|