`string` to `long double`
Closed this issue · 2 comments
plumzero commented
should not this!
inline double operator |(long double fallback) const {
return strparse<long double, std::stold>(_value, fallback);
}
should this?
inline long double operator |(long double fallback) const {
return strparse<long double, std::stold>(_value, fallback);
}
Qix- commented
Hey, great catch! You are correct. I'm away from my machine right now; would you like to submit a pull request? :)