11 lines
178 B
C++
11 lines
178 B
C++
#pragma once
|
|
#include <type_traits>
|
|
|
|
#if defined(_LIBCPP_VERSION)
|
|
namespace std {
|
|
template <class... Args>
|
|
struct __promote {
|
|
using type = double;
|
|
};
|
|
}
|
|
#endif |