Skip to content

Commit

Permalink
odb: dbStream.h clang-format
Browse files Browse the repository at this point in the history
Signed-off-by: Felipe Garay <fgaray@google.com>
  • Loading branch information
fgaray committed Jan 4, 2024
1 parent 93a3566 commit d63697c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/odb/include/odb/dbStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ class dbIStream
return *this;
} else {
*this >> std::get<I>(tup);
return ((*this).operator>> <I + 1>(tup));
return ((*this).operator>><I + 1>(tup));
}
}

Expand Down Expand Up @@ -435,7 +435,7 @@ class dbIStream
if (I == index) {
*this >> std::get<I>(v);
}
return ((*this).operator>> <I + 1>(v));
return ((*this).operator>><I + 1>(v));
}
}
};
Expand Down

0 comments on commit d63697c

Please sign in to comment.