tty: remove unnecessary semi-colon (#300)

This commit is contained in:
Alois Klink 2023-08-25 16:44:16 +01:00 committed by GitHub
parent 87e5440e00
commit 0c866baaf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ UVW_INLINE std::shared_ptr<details::reset_mode_memo> tty_handle::mode_memo_handl
auto shared = weak.lock();
if(!shared) { weak = shared = std::make_shared<details::reset_mode_memo>(); }
return shared;
};
}
UVW_INLINE int tty_handle::init() {
return leak_if(uv_tty_init(parent().raw(), raw(), fd, rw));