mirror of
https://github.com/corda/corda.git
synced 2025-04-05 10:27:11 +00:00
Merge pull request #441 from bigfatbrowncat/cp_fix2
fixed abs() compilation for Android classpath on OSX
This commit is contained in:
commit
0797665859
@ -8,6 +8,9 @@
|
||||
There is NO WARRANTY for this software. See license.txt for
|
||||
details. */
|
||||
|
||||
#include <cmath>
|
||||
using namespace std;
|
||||
|
||||
struct JavaVM;
|
||||
struct _JavaVM;
|
||||
struct _JNIEnv;
|
||||
@ -1206,7 +1209,8 @@ extern "C" AVIAN_EXPORT int64_t JNICALL
|
||||
extern "C" AVIAN_EXPORT int64_t JNICALL
|
||||
Avian_java_lang_Math_abs__J(Thread*, object, uintptr_t* arguments)
|
||||
{
|
||||
return llabs(arguments[0]);
|
||||
int64_t v; memcpy(&v, arguments, 8);
|
||||
return llabs(v);
|
||||
}
|
||||
|
||||
extern "C" AVIAN_EXPORT int64_t JNICALL
|
||||
|
Loading…
x
Reference in New Issue
Block a user