Fix some warnings
This commit is contained in:
parent
c4ad52235f
commit
12f6877963
|
|
@ -29,7 +29,7 @@ namespace Nz
|
||||||
bool Wait(Mutex* mutex, UInt32 timeout);
|
bool Wait(Mutex* mutex, UInt32 timeout);
|
||||||
|
|
||||||
ConditionVariable& operator=(const ConditionVariable&) = delete;
|
ConditionVariable& operator=(const ConditionVariable&) = delete;
|
||||||
inline ConditionVariable& operator=(ConditionVariable&& condition) noexcept;
|
ConditionVariable& operator=(ConditionVariable&& condition) noexcept;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ConditionVariableImpl* m_impl;
|
ConditionVariableImpl* m_impl;
|
||||||
|
|
|
||||||
|
|
@ -335,6 +335,7 @@ namespace Nz
|
||||||
void Window::ProcessEvents(bool block)
|
void Window::ProcessEvents(bool block)
|
||||||
{
|
{
|
||||||
NazaraAssert(m_impl, "Window not created");
|
NazaraAssert(m_impl, "Window not created");
|
||||||
|
NazaraUnused(block);
|
||||||
|
|
||||||
#if !NAZARA_UTILITY_THREADED_WINDOW
|
#if !NAZARA_UTILITY_THREADED_WINDOW
|
||||||
m_impl->ProcessEvents(block);
|
m_impl->ProcessEvents(block);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue