From 46eda4453025029d37f37ce644e34f22aa00590b Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Mon, 18 Dec 2023 14:38:10 -0500 Subject: [PATCH] Removed comments [skip ci] --- src/half.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/half.c b/src/half.c index e299296..79cae74 100644 --- a/src/half.c +++ b/src/half.c @@ -114,7 +114,6 @@ pq_getmsghalf(StringInfo msg) uint16 i; } swap; - /* TODO Likely use float4 for clients */ swap.i = pq_getmsgint(msg, 2); return swap.h; } @@ -131,7 +130,6 @@ pq_sendhalf(StringInfo buf, half h) uint16 i; } swap; - /* TODO Likely use float4 for clients */ swap.h = h; pq_sendint16(buf, swap.i); }