blob: 1144c75c3c03ebb139a00086a5f79c7511dcfdb5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/Samba.cpp.orig 2023-02-13 04:05:19 UTC
+++ src/Samba.cpp
@@ -141,7 +141,7 @@ Samba::connect(SerialPort::Ptr port, int bps)
bool
Samba::connect(SerialPort::Ptr port, int bps)
{
- _port = move(port);
+ _port = std::move(port);
// Try to connect at a high speed if USB
_isUsb = _port->isUsb();
|