From f687370e477a480314c23ac9cc0e892467b0fcab Mon Sep 17 00:00:00 2001 From: Talon Date: Fri, 3 Jul 2026 15:56:14 +0100 Subject: [PATCH] Cleanup voicecat.cpp impl comments --- core/src/voicecat.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/voicecat.cpp b/core/src/voicecat.cpp index b5c3bc0..98cba37 100644 --- a/core/src/voicecat.cpp +++ b/core/src/voicecat.cpp @@ -1,5 +1,5 @@ /* - * voicecat.cpp — C ABI implementation. + * voicecat.cpp: C ABI implementation. * * Lifecycle (create/destroy) and trivial accessors are handled directly here; everything else * delegates to vc_client (core/src/core/client.cpp). @@ -47,7 +47,7 @@ vc_client* vc_client_create(const vc_config* cfg, vc_callbacks cb) { void vc_client_destroy(vc_client* c) { delete c; } -/* ── Everything below delegates to vc_client (real or stub, per preset above). ───────── */ +/* Everything below delegates to vc_client (real or stub, per preset above). */ vc_result vc_connect(vc_client* c, const char* host, uint16_t port) { if (c == nullptr || host == nullptr) return VC_ERR_INVALID_ARG;