From 6187b388ed9eb33193829432c9f2f888b3df3dfa Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 28 Nov 2024 14:15:56 +0000 Subject: [PATCH] Removed debug output --- src/vsg/io/BinaryInput.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/vsg/io/BinaryInput.cpp b/src/vsg/io/BinaryInput.cpp index 2f7c754ea..b350f6648 100644 --- a/src/vsg/io/BinaryInput.cpp +++ b/src/vsg/io/BinaryInput.cpp @@ -122,14 +122,10 @@ void BinaryInput::read(size_t num, long double* value) } else { - if (read_type == 64) { - info("reading long double as double then converting conversion from ", read_type, " to ", native_type); - // 64 to 80 // 64 to 128 - std::vector data(num); _read(num, data.data()); @@ -140,8 +136,6 @@ void BinaryInput::read(size_t num, long double* value) } else // (read_type == 80) || read_type ==128 { - info("reading long double as 80bit then converting conversion from ", read_type, " to ", native_type); - std::vector data(num); _input.read(reinterpret_cast(data.data()), num * sizeof(double_128));