Fixed missing const qualifier
This commit is contained in:
8
uart.hpp
8
uart.hpp
@@ -192,7 +192,7 @@ class Uart {
|
||||
return *this;
|
||||
}
|
||||
|
||||
Uart &operator<<(unsigned short &val)
|
||||
Uart &operator<<(const unsigned short &val)
|
||||
{
|
||||
txNumber(val);
|
||||
return *this;
|
||||
@@ -216,19 +216,19 @@ class Uart {
|
||||
return *this;
|
||||
}
|
||||
|
||||
Uart &operator<<(unsigned long &val)
|
||||
Uart &operator<<(const unsigned long &val)
|
||||
{
|
||||
txNumber(val);
|
||||
return *this;
|
||||
}
|
||||
|
||||
Uart &operator<<(long long &val)
|
||||
Uart &operator<<(const long long &val)
|
||||
{
|
||||
txNumber(val);
|
||||
return *this;
|
||||
}
|
||||
|
||||
Uart &operator<<(unsigned long long &val)
|
||||
Uart &operator<<(const unsigned long long &val)
|
||||
{
|
||||
txNumber(val);
|
||||
return *this;
|
||||
|
||||
Reference in New Issue
Block a user