Skip to content

Commit 2d4ab9b

Browse files
committed
dump.hpp: fix implicit typing
1 parent b0abdc2 commit 2d4ab9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/c4/dump.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ template<class T>
561561
C4_ALWAYS_INLINE auto _format_dump_compute_size(T const& v)
562562
-> typename std::enable_if<!dump_directly<T>::value, size_t>::type
563563
{
564-
return to_chars({}, v);
564+
return to_chars(substr{}, v);
565565
}
566566
template<class Arg, class... Args>
567567
size_t _format_dump_compute_size(Arg const& a, Args const& ...more)

0 commit comments

Comments
 (0)