aboutsummaryrefslogtreecommitdiff
path: root/Debug.h
diff options
context:
space:
mode:
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();
}
}