Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6397f4d3 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "libbinder: save space for optional config options." am: 265e9e28

parents 7f802168 265e9e28
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -58,15 +58,15 @@ static_assert(sizeof(BBinder) == 20);

// global b/c b/230079120 - consistent symbol table
#ifdef BINDER_RPC_DEV_SERVERS
bool kEnableRpcDevServers = true;
constexpr bool kEnableRpcDevServers = true;
#else
bool kEnableRpcDevServers = false;
constexpr bool kEnableRpcDevServers = false;
#endif

#ifdef BINDER_ENABLE_RECORDING
bool kEnableRecording = true;
constexpr bool kEnableRecording = true;
#else
bool kEnableRecording = false;
constexpr bool kEnableRecording = false;
#endif

// Log any reply transactions for which the data exceeds this size