From 8b939b03cfac5d3164c6c9aec551d7b7cdf75dda Mon Sep 17 00:00:00 2001 From: Paul Kirth Date: Wed, 4 Dec 2024 09:23:54 -0800 Subject: [PATCH] Add missing newline at end of content_stream.cpp This trips on builds where `-Wnewline-eof ` is enabled, and breaks `-Werror` builds. --- src/content_stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content_stream.cpp b/src/content_stream.cpp index c5264aa..c8a5f3e 100644 --- a/src/content_stream.cpp +++ b/src/content_stream.cpp @@ -195,4 +195,4 @@ bool ContentWriter::write(const std::string& msg) const { writer->write(msg.data(), msg.size()); } -} // namespace dap \ No newline at end of file +} // namespace dap