diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-11-05 09:12:34 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-11-05 09:13:25 +0100 |
commit | 46f34ebb0bcb296d242fa8b1195f4ecfffebbc80 (patch) | |
tree | 72bd9573ee29cfc8c070253192bdb5df5ec093a1 /vcl | |
parent | 3d96f1ef5556869bb60522c9cfa5c9c6f8db0a18 (diff) |
vcl: fix typo in the Android stub of sgvspln
The intention is to call the real function, not the stub itself.
Change-Id: I4bfd3020871c68951b19a3c63ea9a2dc4d736be7
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/sgvspln.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/sgvspln.cxx b/vcl/source/filter/sgvspln.cxx index 1d95a05c2b62..762e310eb55e 100644 --- a/vcl/source/filter/sgvspln.cxx +++ b/vcl/source/filter/sgvspln.cxx @@ -29,7 +29,7 @@ namespace std template<typename T> T copysign(T x, T y) { - return copysign(x, y); + return ::copysign(x, y); } } #endif |