From 02c96a4cbbfde81f8f0ce67ec8275f1a7990b573 Mon Sep 17 00:00:00 2001 From: "Wang Haoran(Robin)" Date: Sat, 24 Jun 2023 07:54:26 -0700 Subject: [PATCH] server: remove trailling white space --- examples/server/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/server/server.cpp b/examples/server/server.cpp index ea484560e..4ac8d6fbd 100644 --- a/examples/server/server.cpp +++ b/examples/server/server.cpp @@ -103,7 +103,7 @@ static std::string tokens_to_output_formatted_string(const llama_context * ctx, // if first bit is 1, meaning it's a partial character if ((out[0] & 0x80) == 0x80) { std::stringstream ss; - ss<< std::hex << (out[0] & 0xff); + ss<< std::hex << (out[0] & 0xff); std::string res ( ss.str() ); out = "byte: \\x" + res; }