Skip to content

Commit

Permalink
Fixup for logging non-string char buffer in E57_MAX_VERBOSE mode (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
nigels-com authored Dec 3, 2021
1 parent 78fdc92 commit e5fbbef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Decoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ BitpackFloatDecoder::BitpackFloatDecoder( unsigned bytestreamNumber, SourceDestB
size_t BitpackFloatDecoder::inputProcessAligned( const char *inbuf, const size_t firstBit, const size_t endBit )
{
#ifdef E57_MAX_VERBOSE
std::cout << "BitpackFloatDecoder::inputProcessAligned() called, inbuf=" << inbuf << " firstBit=" << firstBit
std::cout << "BitpackFloatDecoder::inputProcessAligned() called, inbuf=" << reinterpret_cast<const void *>(inbuf) << " firstBit=" << firstBit
<< " endBit=" << endBit << std::endl;
#endif
/// Read from inbuf, decode, store in destBuffer
Expand Down

0 comments on commit e5fbbef

Please sign in to comment.