mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-12 01:42:30 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
13 lines
160 B
C++
13 lines
160 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace Json {
|
|
|
|
struct error : std::runtime_error
|
|
{
|
|
using std::runtime_error::runtime_error;
|
|
};
|
|
|
|
} // namespace Json
|