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:
seelabs
2020-05-20 19:21:33 -07:00
committed by manojsdoshi
parent 328e42ad42
commit 99f5193699

View File

@@ -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_;
} }