polserver/pol-core/clib/mlog.cpp
turley 189cad3479 Formating everything
Authors are not forced to use the clang-format setting, but should
atleast be inspired by the style.
The only thing which is now not allowed are tabs for ident/alignment!
2016-02-19 19:26:35 +01:00

19 lines
322 B
C++

/** @file
*
* @par History
* - 2005/06/20 Shinigami: added llog (needs defined MEMORYLEAK)
* - 2007/07/07 Shinigami: added memoryleak_debug to control specific log output (needs defined
* MEMORYLEAK)
*/
#include "mlog.h"
namespace Pol
{
namespace Clib
{
#ifdef MEMORYLEAK
bool memoryleak_debug = false;
#endif
}
}