From 896effbbb7b633666c7797a14c66370a17c3b703 Mon Sep 17 00:00:00 2001 From: Zufu Liu Date: Sat, 24 Jul 2021 10:10:49 +1000 Subject: Bug [#2269]. Fix error with MSVC with /std:c++latest. --- src/CellBuffer.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/CellBuffer.h b/src/CellBuffer.h index be7957e99..d8914d7ba 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -108,8 +108,6 @@ struct SplitView { const char *segment2 = nullptr; size_t length = 0; - SplitView() = default; - bool operator==(const SplitView &other) const noexcept { return segment1 == other.segment1 && length1 == other.length1 && segment2 == other.segment2 && length == other.length; -- cgit v1.2.3