diff options
| author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-04-25 18:02:10 -0400 |
|---|---|---|
| committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-04-25 18:02:10 -0400 |
| commit | 842096ba3533ea01dffb2b1b3cdff30f5d525a9c (patch) | |
| tree | 5200d85563511655b83961cd13897f01df2dea8e /wirish/Print.cpp | |
| parent | 000e0e5a9845404441e9ca843742b9169acfb1a2 (diff) | |
Minor Print cleanups.
Diffstat (limited to 'wirish/Print.cpp')
| -rw-r--r-- | wirish/Print.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/wirish/Print.cpp b/wirish/Print.cpp index 3d7e836..cfb2cda 100644 --- a/wirish/Print.cpp +++ b/wirish/Print.cpp @@ -21,7 +21,8 @@ * Modified 12 April 2011 by Marti Bolivar <mbolivar@leaflabs.com> */ -#include <math.h> +#include "Print.h" + #include <limits.h> #ifndef LLONG_MAX @@ -39,8 +40,7 @@ #define LLONG_MAX 9223372036854775807LL #endif -#include "wirish.h" -#include "Print.h" +#include "wirish_math.h" /* * Public methods @@ -64,7 +64,7 @@ void Print::print(uint8 b) { } void Print::print(char c) { - print((byte)c); + print((uint8)c); } void Print::print(const char str[]) { |
