Core/Signal: Remove debug log that got accidentaly commited
Former-commit-id: 435e861f9d695e09995c3a0f4a1eacd43c1d883d [formerly a995326be759d5dd467d938f363bc2fe727123d3] [formerly 1c38e003106ee292dd7f94fbc68e3308e9be9a86 [formerly cf359837241bce8143a16394c72a14a8c614aa53]] Former-commit-id: cc354e782c2f2a13350c742e2a016bbc656842fb [formerly f72def4abc3b8b27a72ee4d53d11015d0d2bbcd4] Former-commit-id: 85a57ad329db63764ba3f26375926dfdb40ff821
This commit is contained in:
parent
dbe6bdb546
commit
7c2add0a65
|
|
@ -34,7 +34,7 @@ namespace Nz
|
||||||
Signal();
|
Signal();
|
||||||
Signal(const Signal&) = delete;
|
Signal(const Signal&) = delete;
|
||||||
Signal(Signal&& signal);
|
Signal(Signal&& signal);
|
||||||
~Signal();
|
~Signal() = default;
|
||||||
|
|
||||||
void Clear();
|
void Clear();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
// This file is part of the "Nazara Engine - Core module"
|
// This file is part of the "Nazara Engine - Core module"
|
||||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||||
|
|
||||||
|
#include <Nazara/Core/Signal.hpp>
|
||||||
#include <Nazara/Core/Error.hpp>
|
#include <Nazara/Core/Error.hpp>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <Nazara/Core/Debug.hpp>
|
#include <Nazara/Core/Debug.hpp>
|
||||||
|
|
@ -36,12 +37,6 @@ namespace Nz
|
||||||
operator=(std::move(signal));
|
operator=(std::move(signal));
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename ...Args>
|
|
||||||
Signal<Args...>::~Signal()
|
|
||||||
{
|
|
||||||
NazaraWarning("~Signal(" + String::Pointer(this) + ')');
|
|
||||||
}
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* \brief Clears the list of actions attached to the signal
|
* \brief Clears the list of actions attached to the signal
|
||||||
*/
|
*/
|
||||||
|
|
@ -435,4 +430,3 @@ namespace Nz
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <Nazara/Core/DebugOff.hpp>
|
#include <Nazara/Core/DebugOff.hpp>
|
||||||
#include "Signal.hpp"
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue