Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/arm_cortex/estell/exception.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2042,7 +2042,7 @@ void flatten_rtti(exception_ptr p_thrown_exception,
// Add first element to the list
p_map.push_back({ .type_info = p_type_info, .offset = 0 });
// Skip the catch all type
auto iter = p_map.begin() + 1;
auto iter = p_map.begin();
auto info = get_rtti_type(p_type_info);

// If this is a non-class type, then there is no hierarchy and the first
Expand Down
Loading