aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2020-07-16 08:03:19 +1000
committerNeil <nyamatongwe@gmail.com>2020-07-16 08:03:19 +1000
commit5a72039e1a39c200b50f134e4917d216ea68fb48 (patch)
treed298ff48cafd3e6742af9235c6a1401e925aeaf0 /src/Editor.cxx
parent8aeb0e4b77a0f6905981df5f2d9c4622d55a12fb (diff)
downloadscintilla-mirror-5a72039e1a39c200b50f134e4917d216ea68fb48.tar.gz
Add some const, constexpr.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 28fa89120..8e4d85902 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -1545,7 +1545,7 @@ bool Editor::WrapLines(WrapScope ws) {
}
} else if (ws == WrapScope::wsIdle) {
// Try to keep time taken by wrapping reasonable so interaction remains smooth.
- const double secondsAllowed = 0.01;
+ constexpr double secondsAllowed = 0.01;
const Sci::Line linesInAllowedTime = std::clamp<Sci::Line>(
static_cast<Sci::Line>(secondsAllowed / durationWrapOneLine.Duration()),
LinesOnScreen() + 50, 0x10000);