diff options
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; } |