Make binary portable and other fixes

This commit is contained in:
2026-01-31 10:25:39 +00:00
parent 86d5b7a021
commit f93afc0d14
25 changed files with 738 additions and 427 deletions

View File

@@ -16,7 +16,7 @@ void lsp_send(std::shared_ptr<LSPInstance> lsp, json message,
lsp->outbox.push(message);
}
static std::optional<json> read_lsp_message(int fd) {
std::optional<json> read_lsp_message(int fd) {
std::string header;
char c;
while (true) {