Skip to content

Commit e74836b

Browse files
committed
Fix compilation error after d1a1c0a
1 parent d1a1c0a commit e74836b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/picasso_frontend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
uint32_t f32tof24(float f)
88
{
99
uint32_t i;
10-
std::memcpy(&i, &f, sizeof(f));
10+
memcpy(&i, &f, sizeof(f));
1111

1212
uint32_t mantissa = (i << 9) >> 9;
1313
int32_t exponent = (i << 1) >> 24;

0 commit comments

Comments
 (0)