Core/Signal: Remove debug log that got accidentaly commited
Former-commit-id: d2ff15494cf6fa9bb1f052ed72616e99bc48926d [formerly fc3c365c5cb96d33d7fe746654cd88b88f5d7a38] [formerly ba321a669460aa9775d981de526b276e5b737273 [formerly 4d25dea9712386c76a018437e6612e44f5598b81]] Former-commit-id: 4e28a6543ac1aab3e57c0343bca7ef5b35ea874c [formerly d9872404e8c3cd38a973ecc4b7945ac25918c572] Former-commit-id: 2a8ceba2ad1be284ccc229f5af202ee878800002
This commit is contained in:
parent
5095630d70
commit
7802183be0
|
|
@ -34,7 +34,7 @@ namespace Nz
|
|||
Signal();
|
||||
Signal(const Signal&) = delete;
|
||||
Signal(Signal&& signal);
|
||||
~Signal();
|
||||
~Signal() = default;
|
||||
|
||||
void Clear();
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
// This file is part of the "Nazara Engine - Core module"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||
|
||||
#include <Nazara/Core/Signal.hpp>
|
||||
#include <Nazara/Core/Error.hpp>
|
||||
#include <utility>
|
||||
#include <Nazara/Core/Debug.hpp>
|
||||
|
|
@ -36,12 +37,6 @@ namespace Nz
|
|||
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
|
||||
*/
|
||||
|
|
@ -435,4 +430,3 @@ namespace Nz
|
|||
}
|
||||
|
||||
#include <Nazara/Core/DebugOff.hpp>
|
||||
#include "Signal.hpp"
|
||||
|
|
|
|||
Loading…
Reference in New Issue