[Pixelle-commit] SF.net SVN: pixelle:[216] trunk/pixelle/etc/Pixelle.g
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-11-22 01:38:41
|
Revision: 216
http://pixelle.svn.sourceforge.net/pixelle/?rev=216&view=rev
Author: dbrosius
Date: 2008-11-22 01:34:48 +0000 (Sat, 22 Nov 2008)
Log Message:
-----------
quell warnings
Modified Paths:
--------------
trunk/pixelle/etc/Pixelle.g
Modified: trunk/pixelle/etc/Pixelle.g
===================================================================
--- trunk/pixelle/etc/Pixelle.g 2008-11-21 06:19:53 UTC (rev 215)
+++ trunk/pixelle/etc/Pixelle.g 2008-11-22 01:34:48 UTC (rev 216)
@@ -376,11 +376,11 @@
}
| 'e' '(' ')'
{
- mv.visitLdcInsn(Math.E);
+ mv.visitLdcInsn(Double.valueOf(Math.E));
}
| 'pi' '(' ')'
{
- mv.visitLdcInsn(Math.PI);
+ mv.visitLdcInsn(Double.valueOf(Math.PI));
}
| 'random'
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|