Remove unnecessary bitsery object lambdas

This commit is contained in:
Robbert van der Helm
2022-10-09 15:21:54 +02:00
parent 79c9a3f5f6
commit 0b3172d2d0
6 changed files with 7 additions and 14 deletions
@@ -93,8 +93,7 @@ struct GetResponse {
template <typename S>
void serialize(S& s) {
s.ext(result, bitsery::ext::InPlaceOptional(),
[](S& s, auto& v) { s.object(v); });
s.ext(result, bitsery::ext::InPlaceOptional());
}
};