Removed unneeded comments [skip ci]

This commit is contained in:
Andrew Kane
2024-04-27 11:43:45 -07:00
parent b52beefbc6
commit a72511db7f
2 changed files with 0 additions and 7 deletions

View File

@@ -67,9 +67,6 @@ HalfToFloat4(half num)
#elif defined(FLT16_SUPPORT)
return (float) num;
#else
/* TODO Improve performance */
/* Assumes same endianness for floats and integers */
union
{
float f;
@@ -154,9 +151,6 @@ Float4ToHalfUnchecked(float num)
#elif defined(FLT16_SUPPORT)
return (_Float16) num;
#else
/* TODO Improve performance */
/* Assumes same endianness for floats and integers */
union
{
float f;

View File

@@ -244,7 +244,6 @@ sparsevec_in(PG_FUNCTION_ARGS)
long index;
float value;
/* TODO Better error */
if (nnz == maxNnz)
ereport(ERROR,
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),