aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorZufu Liu <unknown>2021-07-24 10:10:49 +1000
committerZufu Liu <unknown>2021-07-24 10:10:49 +1000
commit896effbbb7b633666c7797a14c66370a17c3b703 (patch)
treea48d65af024e7903ba036fa624ab5f0204b22219 /src
parent622e2016eae60cfa74e6f7146803502dfd73661a (diff)
downloadscintilla-mirror-896effbbb7b633666c7797a14c66370a17c3b703.tar.gz
Bug [#2269]. Fix error with MSVC with /std:c++latest.rel-5-1-1
Diffstat (limited to 'src')
-rw-r--r--src/CellBuffer.h2
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;