diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-04-19 15:21:31 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-04-19 15:22:21 +0200 |
commit | cac70559013e575009657aa3c5168b88b1f14691 (patch) | |
tree | 735e65d9e3bd97b16a2a28b6aba54c2d452f13ac /drawinglayer | |
parent | 5353d0a9a30cff4a17e883887688511ab21c416f (diff) |
drawinglayer: fix Android-specific typo
The intention is to call the real function, not the template itself.
Change-Id: Ib10ac4877b33554fe3a5c0918de43bea6e62cfc9
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/primitive2d/borderlineprimitive2d.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drawinglayer/source/primitive2d/borderlineprimitive2d.cxx b/drawinglayer/source/primitive2d/borderlineprimitive2d.cxx index f467aee1e53b..63736d6d2ee1 100644 --- a/drawinglayer/source/primitive2d/borderlineprimitive2d.cxx +++ b/drawinglayer/source/primitive2d/borderlineprimitive2d.cxx @@ -36,7 +36,7 @@ namespace std template<typename T> T round(T x) { - return round(x); + return ::round(x); } } #endif |