[svn:parrot] r48961 - branches/sleeker_boolean/src/pmc
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Sun Sep 12 15:53:27 UTC 2010
Author: jkeenan
Date: Sun Sep 12 15:53:27 2010
New Revision: 48961
URL: https://trac.parrot.org/parrot/changeset/48961
Log:
[codingstd] No trailing whitespace.
Modified:
branches/sleeker_boolean/src/pmc/boolean.pmc
Modified: branches/sleeker_boolean/src/pmc/boolean.pmc
==============================================================================
--- branches/sleeker_boolean/src/pmc/boolean.pmc Sun Sep 12 15:51:24 2010 (r48960)
+++ branches/sleeker_boolean/src/pmc/boolean.pmc Sun Sep 12 15:53:27 2010 (r48961)
@@ -96,12 +96,12 @@
VTABLE INTVAL get_integer () {
return SELF.get_bool();
- }
+ }
VTABLE FLOATVAL get_number () {
INTVAL value = SELF.get_bool();
return (FLOATVAL)value;
- }
+ }
VTABLE STRING *get_string () {
return Parrot_str_from_int(INTERP, SELF.get_integer());
More information about the parrot-commits
mailing list