You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
160 B
11 lines
160 B
10 years ago
|
|
||
|
template<typename T>
|
||
|
constexpr T pi = T(3.1415926535897932385);
|
||
|
|
||
|
int someFunc()
|
||
|
{
|
||
|
auto pi_int = pi<int>;
|
||
|
auto pi_float = pi<float>;
|
||
|
return pi_int - 3;
|
||
|
}
|