File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/function/table/version Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ float Float16ToFloat32(const uint16_t &float16_value) {
3939 float32_value = (sign << 31 ) | ((exponent + (127 - 15 )) << 23 ) | (fraction << 13 );
4040 }
4141
42- return *(( float *) &float32_value);
42+ return *reinterpret_cast < float *>( &float32_value);
4343}
4444
4545} // namespace duckdb
Original file line number Diff line number Diff line change 11#ifndef DUCKDB_PATCH_VERSION
2- #define DUCKDB_PATCH_VERSION " 0-dev1133 "
2+ #define DUCKDB_PATCH_VERSION " 0-dev1135 "
33#endif
44#ifndef DUCKDB_MINOR_VERSION
55#define DUCKDB_MINOR_VERSION 3
88#define DUCKDB_MAJOR_VERSION 1
99#endif
1010#ifndef DUCKDB_VERSION
11- #define DUCKDB_VERSION " v1.3.0-dev1133 "
11+ #define DUCKDB_VERSION " v1.3.0-dev1135 "
1212#endif
1313#ifndef DUCKDB_SOURCE_ID
14- #define DUCKDB_SOURCE_ID " 4d7af49166 "
14+ #define DUCKDB_SOURCE_ID " 779b00c458 "
1515#endif
1616#include " duckdb/function/table/system_functions.hpp"
1717#include " duckdb/main/database.hpp"
You can’t perform that action at this time.
0 commit comments