rippled
Loading...
Searching...
No Matches
messages.h
1#pragma once
2
3// Some versions of protobuf generate code that will produce errors during
4// compilation. See https://github.com/google/protobuf/issues/549 for more
5// details. We work around this by undefining this macro.
6//
7// TODO: Remove this after the protoc we use is upgraded to not generate
8// code that conflicts with the TYPE_BOOL macro.
9
10#ifdef TYPE_BOOL
11#undef TYPE_BOOL
12#endif
13
14#include <xrpl/proto/xrpl.pb.h>