diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-09-21 10:18:52 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-09-21 10:19:08 +0300 |
commit | f28db2168700bd611a33deb3c9aeabb9a35e215c (patch) | |
tree | 08137160a88911eb6c58dcf34f2520e22813031a /vcl/osx/salinst.cxx | |
parent | 6a4681b1d38c4d64bbcae6a8cbdbf0c7f43e68b8 (diff) |
WaE: -Wunused-variable
Change-Id: I6bcc39cd749f8cdbe550b94346c5cb8fd9f67097
Diffstat (limited to 'vcl/osx/salinst.cxx')
-rw-r--r-- | vcl/osx/salinst.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/osx/salinst.cxx b/vcl/osx/salinst.cxx index d33c0a33af25..54f6ffdd7021 100644 --- a/vcl/osx/salinst.cxx +++ b/vcl/osx/salinst.cxx @@ -292,6 +292,7 @@ void SalYieldMutex::doAcquire( sal_uInt32 nLockCount ) break; // wait for doRelease() or RUNINMAIN_* to set the condition osl::Condition::Result res = m_aInMainCondition.wait(); + (void) res; assert(osl::Condition::Result::result_ok == res); } while ( true ); |