aboutsummaryrefslogtreecommitdiff
path: root/Debug.h
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2015-07-25 06:06:57 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2015-07-25 17:59:08 +0200
commitb09789958501538373b1f1cbad6112fdc1d149d4 (patch)
treef24d3d8fce702ae8c07058671c7feb827aeb4917 /Debug.h
parentd317fdb0c737e6b1994da3f01c39937292c1e56f (diff)
downloadtrygvisio_soil_moisture-b09789958501538373b1f1cbad6112fdc1d149d4.tar.gz
trygvisio_soil_moisture-b09789958501538373b1f1cbad6112fdc1d149d4.tar.bz2
trygvisio_soil_moisture-b09789958501538373b1f1cbad6112fdc1d149d4.tar.xz
trygvisio_soil_moisture-b09789958501538373b1f1cbad6112fdc1d149d4.zip
o Reformatting with uncrustify.
Diffstat (limited to 'Debug.h')
-rw-r--r--Debug.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Debug.h b/Debug.h
index 1fee5db..455b6db 100644
--- a/Debug.h
+++ b/Debug.h
@@ -40,7 +40,7 @@ template<typename T>
inline
void DebugImpl<enable>::print(const T *t) {
if (enable) {
- Serial.print(t);
+ Serial.print(t);
}
}
@@ -58,7 +58,7 @@ template<typename T>
inline
void DebugImpl<enable>::println(const T *t) {
if (enable) {
- Serial.println(t);
+ Serial.println(t);
}
}
@@ -66,7 +66,7 @@ template<bool enable>
inline
void DebugImpl<enable>::println() {
if (enable) {
- Serial.println();
+ Serial.println();
}
}