Skip to content

Commit f674857

Browse files
committed
Remove unnecessary cast.
1 parent 985afdc commit f674857

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/_util.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -606,8 +606,7 @@ cairo_font_face_t* font_face_from_path(std::string pathspec)
606606
: std::sregex_token_iterator{},
607607
std::sregex_token_iterator{});
608608
CAIRO_CLEANUP_CHECK(
609-
{ cairo_font_face_destroy(font_face);
610-
delete static_cast<std::vector<std::string>*>(features); },
609+
{ cairo_font_face_destroy(font_face); delete features; },
611610
cairo_font_face_set_user_data,
612611
font_face, &detail::FEATURES_KEY, features,
613612
[](void* ptr) -> void {

0 commit comments

Comments
 (0)