Fix warnings

This commit is contained in:
Victor Zverovich
2019-08-10 16:12:05 -07:00
parent 1607a01870
commit 4e99e09bb3
3 changed files with 6 additions and 4 deletions

View File

@@ -215,7 +215,7 @@ struct scan_handler : error_handler {
template <typename... Args>
std::array<internal::scan_arg, sizeof...(Args)> make_scan_args(Args&... args) {
return std::array<internal::scan_arg, sizeof...(Args)>{args...};
return {{args...}};
}
string_view::iterator vscan(string_view input, string_view format_str,

View File

@@ -123,7 +123,8 @@ template <> struct std::formatter<S> {
auto format(S s, format_context& ctx) {
int width = visit_format_arg(
[](auto value) -> int {
if constexpr (!is_integral_v<decltype(value)>)
using type = decltype(value);
if constexpr (!is_integral_v<type> || is_same_v<type, bool>)
throw format_error("width is not integral");
// else if (value < 0 || value > numeric_limits<int>::max())
else if (fmt::internal::is_negative(value) ||