diff options
author | Neil <nyamatongwe@gmail.com> | 2019-03-25 11:00:39 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-03-25 11:00:39 +1100 |
commit | 1cf755b51cc643240f60131a8fac5e990cfa5e9f (patch) | |
tree | 1a1a8d12e390942dc456b6df0d64d51701c1b9af /cocoa/InfoBar.mm | |
parent | 5344ef2aee7eaca738b0bddab8d9025bf49f1137 (diff) | |
download | scintilla-mirror-1cf755b51cc643240f60131a8fac5e990cfa5e9f.tar.gz |
Use generic versions of ceil, floor, round, lround, trunc from <cmath>.
Diffstat (limited to 'cocoa/InfoBar.mm')
-rw-r--r-- | cocoa/InfoBar.mm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cocoa/InfoBar.mm b/cocoa/InfoBar.mm index 9fa1a19aa..5dd74f46f 100644 --- a/cocoa/InfoBar.mm +++ b/cocoa/InfoBar.mm @@ -10,6 +10,8 @@ * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt). */ +#include <cmath> + #import "InfoBar.h" //-------------------------------------------------------------------------------------------------- @@ -33,7 +35,7 @@ CGFloat heightDelta = newRect.size.height - textSize.height; if (heightDelta > 0) { newRect.size.height -= heightDelta; - newRect.origin.y += ceil(heightDelta / 2); + newRect.origin.y += std::ceil(heightDelta / 2); } } |