diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-07-26 12:22:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-07-27 09:32:19 +0200 |
commit | ba1e1727c238210b022741a710486964f28bb065 (patch) | |
tree | 8b8a5afbc4a16eef7dc95b144937fa57cf6c9abd /sal/osl/w32/file.cxx | |
parent | 877dd9e9d1c1774817fa96f62adda98d5bce0ce8 (diff) |
Related: rhbz#1602589 add comments to coverity annotations
Change-Id: I88c941832a0d682ea4b6028c28edd48cf5df38f7
Reviewed-on: https://gerrit.libreoffice.org/58093
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sal/osl/w32/file.cxx')
-rw-r--r-- | sal/osl/w32/file.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/w32/file.cxx b/sal/osl/w32/file.cxx index aed1b315bb9e..a63b58a1bdca 100644 --- a/sal/osl/w32/file.cxx +++ b/sal/osl/w32/file.cxx @@ -776,7 +776,7 @@ oslFileError SAL_CALL osl_closeFile(oslFileHandle Handle) namespace { -//coverity[result_independent_of_operands] +// coverity[result_independent_of_operands] - crossplatform requirement template<typename T> bool exceedsMaxSIZE_T(T n) { return n > std::numeric_limits< SIZE_T >::max(); } @@ -930,7 +930,7 @@ LONGLONG const g_limit_longlong = std::numeric_limits< LONGLONG >::max(); namespace { -//coverity[result_independent_of_operands] +// coverity[result_independent_of_operands] - crossplatform requirement template<typename T> bool exceedsMaxLONGLONG(T n) { return n > g_limit_longlong; } |