diff options
author | Michael Bien <[email protected]> | 2010-11-23 03:53:26 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-11-23 03:53:26 +0100 |
commit | 5379e1e95f02be16423fb15689383075e0828b4f (patch) | |
tree | 84ae10ea7d41e95c47d63a41e72a4dd9779b886f /test/com/jogamp/opencl | |
parent | 99a8764c3ab9dd80d8d5ac33ed244c0928376a24 (diff) |
missing return
Diffstat (limited to 'test/com/jogamp/opencl')
-rw-r--r-- | test/com/jogamp/opencl/CLCommandQueueTest.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/com/jogamp/opencl/CLCommandQueueTest.java b/test/com/jogamp/opencl/CLCommandQueueTest.java index c8acc6df..6e90409e 100644 --- a/test/com/jogamp/opencl/CLCommandQueueTest.java +++ b/test/com/jogamp/opencl/CLCommandQueueTest.java @@ -195,6 +195,7 @@ public class CLCommandQueueTest { if(!theChosenOne.isAtLeast(CL_1_1)) { out.println("test disabled, required CLVersion: "+CL_1_1+" available: "+theChosenOne.getVersion()); + return; } final CLContext context = CLContext.create(theChosenOne); |