diff options
author | Hans-Christoph Steiner <hans@at.or.at> | 2008-03-24 17:28:17 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <hans@at.or.at> | 2008-03-24 17:28:17 +0000 |
commit | ecf8c4d288b90a2a4cb253d2b06e4b6abe42a48c (patch) | |
tree | a3e66f817f27afe9f9e6e6760dfb7b69ed730d20 /cores/arduino/WMath.cpp | |
parent | 8d93bbebbd6361e26c728b3c6e892afb2bcfd8ea (diff) |
added newline at the end of file to get rid of compiler and SVN warnings
Diffstat (limited to 'cores/arduino/WMath.cpp')
-rw-r--r-- | cores/arduino/WMath.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/WMath.cpp b/cores/arduino/WMath.cpp index c83e2a2..c1471ca 100644 --- a/cores/arduino/WMath.cpp +++ b/cores/arduino/WMath.cpp @@ -55,4 +55,4 @@ long random(long howsmall, long howbig) long map(long x, long in_min, long in_max, long out_min, long out_max) { return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min; -}
\ No newline at end of file +} |