mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
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!
19 lines
322 B
C++
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
|
|
}
|
|
}
|