mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 19:15:54 +00:00
Per XLS-0095, we are taking steps to rename ripple(d) to xrpl(d). This change updates the CMake files and definitions therein, plus a handful of related modifications. Specifically, the compiler files are renamed from `RippleXXX.cmake` or `RippledXXX.cmake` to `XrplXXX.cmake`, and any references to `ripple` and `rippled` (with or without capital letters) are renamed to `xrpl` and `xrpld`, respectively. The name of the binary, currently `rippled`, remains unchanged and will be updated in a separate PR. This change is purely cosmetic and does not affect the functioning of the binary.
18 lines
507 B
C
18 lines
507 B
C
#ifndef XRPL_PROTOCOL_MESSAGES_H_INCLUDED
|
|
#define XRPL_PROTOCOL_MESSAGES_H_INCLUDED
|
|
|
|
// Some versions of protobuf generate code that will produce errors during
|
|
// compilation. See https://github.com/google/protobuf/issues/549 for more
|
|
// details. We work around this by undefining this macro.
|
|
//
|
|
// TODO: Remove this after the protoc we use is upgraded to not generate
|
|
// code that conflicts with the TYPE_BOOL macro.
|
|
|
|
#ifdef TYPE_BOOL
|
|
#undef TYPE_BOOL
|
|
#endif
|
|
|
|
#include <xrpl/proto/xrpl.pb.h>
|
|
|
|
#endif
|