diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-12 08:57:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-15 12:53:38 +0200 |
commit | 6eba86ae9d6c8550e069ef933889610aee309381 (patch) | |
tree | a9b278f2d124c1db1261bc5128516fff3ea89919 /sal | |
parent | afed3d177b8bfbc98d631867f200486bc2963e03 (diff) |
clang-tidy misc-redundant-expression
Change-Id: I708b0b486a233071f95592ccdb97f27fc35a23c4
Reviewed-on: https://gerrit.libreoffice.org/61783
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/unx/tempfile.cxx | 2 | ||||
-rw-r--r-- | sal/qa/osl/pipe/osl_Pipe.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/unx/tempfile.cxx b/sal/osl/unx/tempfile.cxx index 1070dbe0eaa1..b7630cb32f4c 100644 --- a/sal/osl/unx/tempfile.cxx +++ b/sal/osl/unx/tempfile.cxx @@ -248,7 +248,7 @@ static oslFileError osl_create_temp_file_impl_( /* in case of error osl_File_E_EXIST we simply try again else we give up */ - if ((osl_error == osl_File_E_None) || (osl_error != osl_File_E_EXIST)) + if (osl_error != osl_File_E_EXIST) { rtl_uString_release(rand_name); diff --git a/sal/qa/osl/pipe/osl_Pipe.cxx b/sal/qa/osl/pipe/osl_Pipe.cxx index 683cbf83f2ce..d50921d4ff8c 100644 --- a/sal/qa/osl/pipe/osl_Pipe.cxx +++ b/sal/qa/osl/pipe/osl_Pipe.cxx @@ -441,7 +441,7 @@ namespace osl_Pipe { ::osl::Pipe aPipe; aPipe.create( test::uniquePipeName(aTestPipeName), osl_Pipe_CREATE ); - bRes = aPipe == aPipe; + bRes = aPipe == aPipe; // NOLINT(misc-redundant-expression) aPipe.close( ); CPPUNIT_ASSERT_MESSAGE( "#test comment#: test isEqual(), compare itself.", |