We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1a1c0a commit e74836bCopy full SHA for e74836b
1 file changed
source/picasso_frontend.cpp
@@ -7,7 +7,7 @@
7
uint32_t f32tof24(float f)
8
{
9
uint32_t i;
10
- std::memcpy(&i, &f, sizeof(f));
+ memcpy(&i, &f, sizeof(f));
11
12
uint32_t mantissa = (i << 9) >> 9;
13
int32_t exponent = (i << 1) >> 24;
0 commit comments