We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bab29d5 commit c81325dCopy full SHA for c81325d
include/ccf/tx_status.h
@@ -34,7 +34,8 @@ namespace ccf
34
// Contains only the terminal values of TxStatus
35
enum class FinalTxStatus : std::underlying_type_t<TxStatus>
36
{
37
- Committed = static_cast<std::underlying_type_t<TxStatus>>(TxStatus::Committed),
+ Committed =
38
+ static_cast<std::underlying_type_t<TxStatus>>(TxStatus::Committed),
39
Invalid = static_cast<std::underlying_type_t<TxStatus>>(TxStatus::Invalid),
40
};
41
0 commit comments