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>
12 lines
169 B
C++
12 lines
169 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
|
|
#include "polstats.h"
|
|
|
|
namespace Pol::Core
|
|
{
|
|
PolStats::PolStats() : bytes_received( 0 ), bytes_sent( 0 ) {}
|
|
} // namespace Pol::Core
|