Change tabs by whitespaces.

This commit is contained in:
Daniel Gomez Antonio 2020-03-26 11:22:51 -05:00
parent 8443d643b1
commit 9ee9f5aef5

View File

@ -544,22 +544,22 @@ namespace cxxopts
} }
} }
template <typename R, typename T> template <typename R, typename T>
void void
checked_negate(R& r, T&& t, const std::string&, std::true_type) checked_negate(R& r, T&& t, const std::string&, std::true_type)
{ {
// if we got to here, then `t` is a positive number that fits into // if we got to here, then `t` is a positive number that fits into
// `R`. So to avoid MSVC C4146, we first cast it to `R`. // `R`. So to avoid MSVC C4146, we first cast it to `R`.
// See https://github.com/jarro2783/cxxopts/issues/62 for more details. // See https://github.com/jarro2783/cxxopts/issues/62 for more details.
r = static_cast<R>(-static_cast<R>(t-1)-1); r = static_cast<R>(-static_cast<R>(t-1)-1);
} }
template <typename R, typename T> template <typename R, typename T>
void void
checked_negate(R&, T&&, const std::string& text, std::false_type) checked_negate(R&, T&&, const std::string& text, std::false_type)
{ {
throw_or_mimic<argument_incorrect_type>(text); throw_or_mimic<argument_incorrect_type>(text);
} }
template <typename T> template <typename T>
void void
@ -623,7 +623,7 @@ namespace cxxopts
if (negative) if (negative)
{ {
checked_negate<T>(value, result, text, std::integral_constant<bool, is_signed>()); checked_negate<T>(value, result, text, std::integral_constant<bool, is_signed>());
} }
else else
{ {