polserver/pol-core/pol/uobjcnt.cpp
turleypol 21577d8e5b
Clang Tidy concat namespaces (#855)
* tidy

* Automated clang-tidy change: modernize-concat-nested-namespaces

* compile test

* fix namespace

---------

Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
2026-01-17 10:30:21 +01:00

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