diff options
author | Neil <nyamatongwe@gmail.com> | 2020-07-16 08:03:19 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-07-16 08:03:19 +1000 |
commit | 5a72039e1a39c200b50f134e4917d216ea68fb48 (patch) | |
tree | d298ff48cafd3e6742af9235c6a1401e925aeaf0 /src/Editor.cxx | |
parent | 8aeb0e4b77a0f6905981df5f2d9c4622d55a12fb (diff) | |
download | scintilla-mirror-5a72039e1a39c200b50f134e4917d216ea68fb48.tar.gz |
Add some const, constexpr.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
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); |