Core/Signal: Remove debug log that got accidentaly commited
Former-commit-id: 00e2d8f110409986b8a5fe0e0ae58a2aa5189e20 [formerly a9e1a317e7255a7980a26d42457b4e3e383bab35] [formerly ac72eb216ffe4edc66f382d9e3c1928b2ea8b5fa [formerly b788b785f11797bd6c13ac7836a76b3055f26f5b]] Former-commit-id: 18be9d7ef0f40a722c261626d5c882e4093d173b [formerly 58746ee0d1a9091aaae34b09f4b4a674c69e0176] Former-commit-id: b2a6448db8fbfb092cc5ebd59a3fc1a58f16305a
This commit is contained in:
parent
b3b0d9a270
commit
a0547ae576
|
|
@ -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