From 0c866baaf7a73690048dfb65b209c22c201205b1 Mon Sep 17 00:00:00 2001 From: Alois Klink Date: Fri, 25 Aug 2023 16:44:16 +0100 Subject: [PATCH] tty: remove unnecessary semi-colon (#300) --- src/uvw/tty.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uvw/tty.cpp b/src/uvw/tty.cpp index 09e83a4f..32a8859c 100644 --- a/src/uvw/tty.cpp +++ b/src/uvw/tty.cpp @@ -22,7 +22,7 @@ UVW_INLINE std::shared_ptr tty_handle::mode_memo_handl auto shared = weak.lock(); if(!shared) { weak = shared = std::make_shared(); } return shared; -}; +} UVW_INLINE int tty_handle::init() { return leak_if(uv_tty_init(parent().raw(), raw(), fd, rw));