mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
remove TODO
This commit is contained in:
@@ -4076,7 +4076,7 @@ template <typename T, typename Enable = void>
|
|||||||
struct Comparer;
|
struct Comparer;
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct Comparer<T, enable_if_t<IsString<T>::value>> : ComparerBase {
|
struct Comparer<T, enable_if_t<IsString<T>::value>> : ComparerBase {
|
||||||
T rhs; // TODO: store adapted string?
|
T rhs;
|
||||||
explicit Comparer(T value)
|
explicit Comparer(T value)
|
||||||
: rhs(value) {
|
: rhs(value) {
|
||||||
}
|
}
|
||||||
@@ -5143,7 +5143,7 @@ class StringBuilder {
|
|||||||
append(*s++);
|
append(*s++);
|
||||||
}
|
}
|
||||||
void append(const char * s, size_t n) {
|
void append(const char * s, size_t n) {
|
||||||
while (n-- > 0) // TODO: memcpy
|
while (n-- > 0)
|
||||||
append(*s++);
|
append(*s++);
|
||||||
}
|
}
|
||||||
void append(char c) {
|
void append(char c) {
|
||||||
|
|||||||
Reference in New Issue
Block a user