mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Disable formatting operator&:
Clang 10.0.0 and 10.0.1 disagree on formatting operator& Disable until we upgrade to clang 11.
This commit is contained in:
@@ -98,7 +98,11 @@ public:
|
|||||||
: sink_(partition, threshold, suite), journal_(sink_)
|
: sink_(partition, threshold, suite), journal_(sink_)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
operator beast::Journal&()
|
// Clang 10.0.0 and 10.0.1 disagree about formatting operator&
|
||||||
|
// TBD Re-enable formatting when we upgrade to clang 11
|
||||||
|
// clang-format off
|
||||||
|
operator beast::Journal &()
|
||||||
|
// clang-format on
|
||||||
{
|
{
|
||||||
return journal_;
|
return journal_;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user