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>
14 lines
133 B
C++
14 lines
133 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
#ifndef __ALLOCD_H
|
|
#define __ALLOCD_H
|
|
|
|
namespace Pol::Core
|
|
{
|
|
void PrintAllocationData();
|
|
}
|
|
|
|
#endif
|