mirror of
https://github.com/thomasxm/BOAZ_beta
synced 2026-06-06 16:54:29 +00:00
11 lines
153 B
Plaintext
11 lines
153 B
Plaintext
#pragma once
|
|
|
|
namespace std
|
|
{
|
|
struct __numeric_limits_base
|
|
{};
|
|
template<typename _Tp>
|
|
struct numeric_limits : public __numeric_limits_base
|
|
{};
|
|
}
|