Open GoogleCodeExporter opened 9 years ago
Thanks for reporting and for including simple test cases.
Let me take a look.
Original comment by frost.g...@gmail.com
on 17 Mar 2013 at 11:47
I was able to recreate. Just about to get on a plane. This will give me
something to keep me occupied ;)
Original comment by frost.g...@gmail.com
on 17 Mar 2013 at 11:58
Have a nice flight :)
Original comment by lats...@gmail.com
on 18 Mar 2013 at 1:40
So I have a workaround (which you may have found already), and also what looks
like a fix. It looks like when their is a declaration in the 'then' block. We
are not pinning the 'else' to the outer if.
The workaround is to create an else for your inner if's, just place some
'throwaway code' in the else.
So
if (red){
if (green){
your code;
} else{
red = red;
}
}else{
your code
}
I have a fix that seems to work. Can I send you a new aparapi.jar to test this
with your app?
Gary
Original comment by frost.g...@gmail.com
on 18 Mar 2013 at 5:51
Try the attached Aparapi.jar and Mac OSX dylib
Original comment by frost.g...@gmail.com
on 18 Mar 2013 at 6:18
Attachments:
Fix has been tested and appears to work.
Thanks for quick turnaround :)
Can you post the patch and/or let me know a branch I can build from that will
include the fix? (no rush on this)
Original comment by lats...@gmail.com
on 18 Mar 2013 at 6:48
Here (attached) is the patch I applied to the trunk-20130305 trunk copy.
Basically we remove the search for 'arbitrary scope' which seems to be broken.
Original comment by frost.g...@gmail.com
on 18 Mar 2013 at 5:50
Attachments:
Original issue reported on code.google.com by
lats...@gmail.com
on 17 Mar 2013 at 11:17Attachments: