mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-10 08:52:34 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
9 lines
227 B
C
9 lines
227 B
C
#pragma once
|
|
|
|
#include <xrpl/basics/contract.h>
|
|
#include <xrpl/json/json_errors.h>
|
|
|
|
#define JSON_ASSERT_MESSAGE(condition, message) \
|
|
if (!(condition)) \
|
|
xrpl::Throw<Json::error>(message);
|