This commit is contained in:
MichaelDvP
2023-01-05 11:19:26 +01:00
26 changed files with 11278 additions and 3391 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) {}