summaryrefslogtreecommitdiff
path: root/src/serial.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/serial.hpp')
-rw-r--r--src/serial.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/serial.hpp b/src/serial.hpp
index f32ca63..36aa6ed 100644
--- a/src/serial.hpp
+++ b/src/serial.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "std/smart_string.hpp"
+#include "common/string.hpp"
#include <USBAPI.h>
@@ -10,7 +10,7 @@ public:
SerialStream(Serial_ serial, const unsigned long &baud_rate);
SerialStream &operator<<(const char *str);
- SerialStream &operator<<(const SmartString &str);
+ SerialStream &operator<<(const common::String &str);
SerialStream &operator<<(const double &num);
SerialStream &operator<<(const int &num);
SerialStream &operator<<(const unsigned int &num);