File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 77
88#if defined(_MSC_VER)
99#include < BaseTsd.h>
10- typedef SSIZE_T ssize_t ;
10+ using ssize_t = SSIZE_T ;
1111#endif
1212
1313namespace ffmpeg {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ struct torch_jpeg_error_mgr {
1717 jmp_buf setjmp_buffer; /* for return to caller */
1818};
1919
20- typedef struct torch_jpeg_error_mgr * torch_jpeg_error_ptr ;
20+ using torch_jpeg_error_ptr = struct torch_jpeg_error_mgr *;
2121void torch_jpeg_error_exit (j_common_ptr cinfo);
2222
2323#endif
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ struct torch_png_error_mgr {
2323 jmp_buf setjmp_buffer; /* for return to caller */
2424};
2525
26- typedef torch_png_error_mgr* torch_png_error_mgr_ptr ;
26+ using torch_png_error_mgr_ptr = torch_png_error_mgr*;
2727
2828void torch_png_warn (png_structp png_ptr, png_const_charp warn_msg) {
2929 /* Display warning to user */
You can’t perform that action at this time.
0 commit comments