Add PrimitiveWrapper<T> response logging

This commit is contained in:
Robbert van der Helm
2020-12-14 18:05:37 +01:00
parent e282f8c572
commit bb110e8cbb
3 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ class PrimitiveWrapper {
PrimitiveWrapper() {}
PrimitiveWrapper(T value) : value(value) {}
operator T() { return value; }
operator T() const { return value; }
template <typename S>
void serialize(S& s) {