diff options
author | iakarsu <iakarsu99@gmail.com> | 2020-01-28 15:39:57 +0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-02-03 14:23:35 +0100 |
commit | 446af1fd2b76dfe32a3f947b683a4e36122cea37 (patch) | |
tree | bb2505b81dcca3913b8c003400cf963e8d26397d /include/basegfx | |
parent | 337f199a899e339601d13a34d15319060c5be185 (diff) |
tdf#96505: Get rid of cargo cult long integer literals
Change-Id: I3917e5152036f77eb419fe658937562f5928ceff
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87614
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/basegfx')
-rw-r--r-- | include/basegfx/range/basicrange.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/basegfx/range/basicrange.hxx b/include/basegfx/range/basicrange.hxx index 17f31ea42f19..046dfafdd03f 100644 --- a/include/basegfx/range/basicrange.hxx +++ b/include/basegfx/range/basicrange.hxx @@ -297,7 +297,7 @@ namespace basegfx { static sal_Int32 minVal() { return SAL_MIN_INT32; }; static sal_Int32 maxVal() { return SAL_MAX_INT32; }; - static sal_Int32 neutral() { return 0L; }; + static sal_Int32 neutral() { return 0; }; typedef sal_Int64 DifferenceType; }; |