Skip to content

Commit 1f2ed6e

Browse files
neoatlanbmoffatt
andauthored
Cast type explicitly for fix build error (#111)
Co-authored-by: Bryan Moffatt <bmoffatt@users.noreply.github.com>
1 parent 0ee61ee commit 1f2ed6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backward.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3266,7 +3266,7 @@ class TraceResolverDarwinImpl<trace_resolver_tag::backtrace_symbol> : public Tra
32663266
if (st.size() == 0) {
32673267
return;
32683268
}
3269-
_symbols.reset(backtrace_symbols(st.begin(), st.size()));
3269+
_symbols.reset(backtrace_symbols(st.begin(), (int)st.size()));
32703270
}
32713271

32723272
ResolvedTrace resolve(ResolvedTrace trace)

0 commit comments

Comments
 (0)