Kaydet (Commit) 46f34ebb authored tarafından Miklos Vajna's avatar Miklos Vajna

vcl: fix typo in the Android stub of sgvspln

The intention is to call the real function, not the stub itself.

Change-Id: I4bfd3020871c68951b19a3c63ea9a2dc4d736be7
üst 3d96f1ef
...@@ -29,7 +29,7 @@ namespace std ...@@ -29,7 +29,7 @@ namespace std
template<typename T> template<typename T>
T copysign(T x, T y) T copysign(T x, T y)
{ {
return copysign(x, y); return ::copysign(x, y);
} }
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment