Skip to content

Commit 6187b38

Browse files
committed
Removed debug output
1 parent 8f24b89 commit 6187b38

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/vsg/io/BinaryInput.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,10 @@ void BinaryInput::read(size_t num, long double* value)
122122
}
123123
else
124124
{
125-
126125
if (read_type == 64)
127126
{
128-
info("reading long double as double then converting conversion from ", read_type, " to ", native_type);
129-
130127
// 64 to 80
131128
// 64 to 128
132-
133129
std::vector<double> data(num);
134130
_read(num, data.data());
135131

@@ -140,8 +136,6 @@ void BinaryInput::read(size_t num, long double* value)
140136
}
141137
else // (read_type == 80) || read_type ==128
142138
{
143-
info("reading long double as 80bit then converting conversion from ", read_type, " to ", native_type);
144-
145139
std::vector<double_128> data(num);
146140

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

0 commit comments

Comments
 (0)