mirror of
https://github.com/mpusz/mp-units.git
synced 2025-08-07 06:04:27 +02:00
Capture NTTP in variable
This should make it OK for MSVC to take the address, working around a compiler bug.
This commit is contained in:
@@ -420,7 +420,8 @@ constexpr bool operator==(magnitude<LeftBPs...>, magnitude<RightBPs...>)
|
||||
template<ratio E, auto... BPs>
|
||||
constexpr auto pow(magnitude<BPs...>)
|
||||
{
|
||||
if constexpr (E.num == 0) {
|
||||
constexpr auto exp = E;
|
||||
if constexpr (exp.num == 0) {
|
||||
return magnitude<>{};
|
||||
} else {
|
||||
return magnitude<pow(BPs, E)...>{};
|
||||
|
Reference in New Issue
Block a user