summaryrefslogtreecommitdiff
path: root/src/serial.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-14 10:24:36 +0100
committerHampusM <hampus@hampusmat.com>2022-03-14 10:24:36 +0100
commita119e6ca70ffab14f0a70908fa3eeb83b41bb5ab (patch)
tree51b72774694f5e1aac0bb17fc1a5e528dbad9b44 /src/serial.hpp
parent6b5754655f78a7f93b756ff902ce9fd80d9dc4ec (diff)
refactor: rename std to common
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);