MCPcopy Create free account
hub / github.com/SimpleITK/SimpleITK / BigIntegerFix

Class BigIntegerFix

Testing/Unit/Java/sitkImageTests.java:25–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23/* This class is needed because on some systems uint64_t gets converted to long
24 * while on others it becomes a BigInteger. */
25class BigIntegerFix
26 {
27 public static long Convert( long value )
28 {
29 return value;
30 }
31
32 public static long Convert( BigInteger value )
33 {
34 return value.longValue();
35 }
36 }
37
38class sitkImageTests
39 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected