From 27b271201855e0f09df96eedaec596f09b00f1f9 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 24 Mar 2008 17:28:17 +0000 Subject: [PATCH] added newline at the end of file to get rid of compiler and SVN warnings --- hardware/cores/arduino/WMath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/cores/arduino/WMath.cpp b/hardware/cores/arduino/WMath.cpp index c83e2a2f4..c1471ca31 100644 --- a/hardware/cores/arduino/WMath.cpp +++ b/hardware/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 +}