diff options
author | Zufu Liu <unknown> | 2021-07-24 10:10:49 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2021-07-24 10:10:49 +1000 |
commit | 896effbbb7b633666c7797a14c66370a17c3b703 (patch) | |
tree | a48d65af024e7903ba036fa624ab5f0204b22219 /src/CellBuffer.h | |
parent | 622e2016eae60cfa74e6f7146803502dfd73661a (diff) | |
download | scintilla-mirror-896effbbb7b633666c7797a14c66370a17c3b703.tar.gz |
Bug [#2269]. Fix error with MSVC with /std:c++latest.rel-5-1-1
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 2 |
1 files changed, 0 insertions, 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; |