diff options
author | Michael Bien <[email protected]> | 2010-02-28 02:02:19 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-02-28 02:02:19 +0100 |
commit | c3f0716ba1de6c0a7ff8c5d25e9e599b9a1b83b2 (patch) | |
tree | dc8c77c0d2cfd56d2ea37e62d16a1f7a07948fe3 /test | |
parent | f838035d40285b9651868dbd711eb14a5ff92ad2 (diff) |
fixed hudson build.
Diffstat (limited to 'test')
-rw-r--r-- | test/com/mbien/opencl/LowLevelBindingTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/com/mbien/opencl/LowLevelBindingTest.java b/test/com/mbien/opencl/LowLevelBindingTest.java index 49c417f1..78ca3555 100644 --- a/test/com/mbien/opencl/LowLevelBindingTest.java +++ b/test/com/mbien/opencl/LowLevelBindingTest.java @@ -1,5 +1,6 @@ package com.mbien.opencl; +import com.mbien.opencl.impl.CLImpl; import com.sun.gluegen.runtime.CPU; import com.sun.gluegen.runtime.PointerBuffer; import java.nio.ByteBuffer; @@ -358,7 +359,7 @@ public class LowLevelBindingTest { private final void checkError(String msg, int ret) { if(ret != CL.CL_SUCCESS) - throw new CLException(ret, msg); + throw CLException.newException(ret, msg); } |