diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-17 17:26:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-17 17:27:55 +0200 |
commit | 7243c13bdd4cbc528673b658faea6772077fa1f6 (patch) | |
tree | dd281170edf886d97712e76dfab80aac33af91ec /vcl | |
parent | ecae068befc88fe6aa6f8ca09c8e5c9407c11d89 (diff) |
loplugin:implicitboolconversion: vcl (clang-cl)
Change-Id: I81ae357574e5020a5e2dfb7162d451b985c18766
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/win/app/salinst.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/app/salinst.cxx b/vcl/win/app/salinst.cxx index 3b29cf820b01..d6a970e7eca8 100644 --- a/vcl/win/app/salinst.cxx +++ b/vcl/win/app/salinst.cxx @@ -210,7 +210,7 @@ void ImplSalYieldMutexAcquireWithWait( sal_uLong nCount ) osl::Condition::Result res = rCondition.wait(); assert(osl::Condition::Result::result_ok == res); } - while ( 1 ); + while ( true ); --nCount; } } |