summaryrefslogtreecommitdiff
path: root/platform/android/src/math/math.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/math/math.hpp')
-rw-r--r--platform/android/src/math/math.hpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/platform/android/src/math/math.hpp b/platform/android/src/math/math.hpp
deleted file mode 100644
index c6a8549f10..0000000000
--- a/platform/android/src/math/math.hpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-
-#include <mbgl/util/noncopyable.hpp>
-
-#include <jni/jni.hpp>
-
-namespace mbgl {
-namespace android {
-namespace math {
-
-class Math : private mbgl::util::noncopyable {
-public:
- static constexpr auto Name() { return "java/lang/Math"; };
-
- static jni::jdouble rint(jni::JNIEnv& env, const jni::jdouble value) {
- static auto& javaClass = jni::Class<Math>::Singleton(env);
- static auto method = javaClass.GetStaticMethod<jni::jdouble (jni::jdouble)>(env, "rint");
- return javaClass.Call(env, method, value);
- };
-};
-
-void registerNative(jni::JNIEnv&);
-
-} // namespace math
-} // namespace android
-} // namespace mbgl \ No newline at end of file