mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* tidy * Automated clang-tidy change: modernize-concat-nested-namespaces * compile test * fix namespace --------- Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
23 lines
383 B
C++
23 lines
383 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
|
|
#include "uobjcnt.h"
|
|
|
|
|
|
namespace Pol::Core
|
|
{
|
|
// This comment is needed for correct indentation to be detected
|
|
UObjCount::UObjCount()
|
|
: unreaped_orphans( 0 ),
|
|
uobject_count( 0 ),
|
|
uitem_count( 0 ),
|
|
ucharacter_count( 0 ),
|
|
npc_count( 0 ),
|
|
umulti_count( 0 ),
|
|
uobj_count_echrref( 0 )
|
|
{
|
|
}
|
|
} // namespace Pol::Core
|