Skip to content

Commit

Permalink
Removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Nov 28, 2024
1 parent 8f24b89 commit 6187b38
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/vsg/io/BinaryInput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<double> data(num);
_read(num, data.data());

Expand All @@ -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<double_128> data(num);

_input.read(reinterpret_cast<char*>(data.data()), num * sizeof(double_128));
Expand Down

0 comments on commit 6187b38

Please sign in to comment.