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 42c5780 commit e4a72cdCopy full SHA for e4a72cd
spatial/src/spatial/core/functions/scalar/st_hilbert.cpp
@@ -79,7 +79,7 @@ inline uint32_t HilbertEncode(uint32_t n, uint32_t x, uint32_t y) {
79
80
static uint32_t FloatToUint32(float f)
81
{
82
- if (isnan(f)) {
+ if (std::isnan(f)) {
83
return 0xFFFFFFFF;
84
}
85
uint32_t res;
0 commit comments