Fix windows build warning

This commit is contained in:
Jeremy 2023-11-19 23:20:31 -06:00
parent 24e64ab385
commit 0b48df7f22
No known key found for this signature in database
GPG Key ID: B4C8300FEC395042

View File

@ -60,7 +60,7 @@ namespace detail {
namespace cpptrace { namespace cpptrace {
namespace detail { namespace detail {
inline void get_minimal_object_frame(frame_ptr address, minimal_object_frame* out) { inline void get_minimal_object_frame(frame_ptr address, minimal_object_frame* out) {
out->raw_address = 0; out->raw_address = address;
out->address_relative_to_object_base_in_memory = 0; out->address_relative_to_object_base_in_memory = 0;
out->object_path[0] = 0; out->object_path[0] = 0;
} }