Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
src,stream: improve WriteString
remove extra ;
  • Loading branch information
ywave620 committed Dec 15, 2023
commit b4a3aae5f87b50f51d3ca6a905b5f39c68963ea2
2 changes: 1 addition & 1 deletion src/stream_wrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class LibuvStreamWrap : public HandleWrap, public StreamBase {
// Resource implementation
int DoShutdown(ShutdownWrap* req_wrap) override;
int DoTryWrite(uv_buf_t** bufs, size_t* count) override;
inline bool HasDoTryWrite() const override { return true; };
inline bool HasDoTryWrite() const override { return true; }
int DoWrite(WriteWrap* w,
uv_buf_t* bufs,
size_t count,
Expand Down