Skip to content
Snippets Groups Projects
Commit ccf94175 authored by Grant Kim's avatar Grant Kim
Browse files

Resolve compiler warning on Win32

parent b6c144ef
No related branches found
No related tags found
No related merge requests found
......@@ -829,7 +829,7 @@ int geomesh_transform_repoint_src_to_dst(void *opaque, float sensorcrop, float n
zz = cosf(phi);
// Calc Equirect
#if defined(WIN32)
#if defined(MSC_VER)
hypotenuse = _hypotf(yy, zz);
#else
hypotenuse = hypotf(yy, zz);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment