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
|
|
{};
|
|
}
|