Skip to content

Commit

Permalink
Comment out unused (but still generating warnings) floating point par…
Browse files Browse the repository at this point in the history
…sing functions
  • Loading branch information
NikolajSchlej committed Oct 3, 2022
1 parent ee6b536 commit 662e0bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions common/kaitai/kaitaistream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ uint64_t kaitai::kstream::read_u8le() {
// Big-endian
// ........................................................................

/*
float kaitai::kstream::read_f4be() {
uint32_t t;
m_io->read(reinterpret_cast<char *>(&t), 4);
Expand Down Expand Up @@ -297,6 +298,7 @@ double kaitai::kstream::read_f8le() {
#endif
return reinterpret_cast<double &>(t);
}
*/

// ========================================================================
// Unaligned bit values
Expand Down

0 comments on commit 662e0bf

Please sign in to comment.