remove comments

This commit is contained in:
Proddy
2023-01-03 14:48:08 +01:00
parent b587c08768
commit c28de99907
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ class MsgPackDeserializer {
NestingLimit nestingLimit) {
DeserializationError::Code err;
uint8_t code = 0; // TODO: why do we need to initialize this variable?
uint8_t code = 0;
err = readByte(code);
if (err)
return err;

View File

@@ -22,7 +22,7 @@ struct Comparer;
template <typename T>
struct Comparer<T, typename enable_if<IsString<T>::value>::type>
: ComparerBase {
T rhs; // TODO: store adapted string?
T rhs;
explicit Comparer(T value) : rhs(value) {}