Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions fbpcf/frontend/BitString_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,9 @@ BitString<isSecret, schedulerId, usingBatch>::operator&(
template <bool isSecret, int schedulerId, bool usingBatch>
template <bool isSecretOther>
BitString<isSecret || isSecretOther, schedulerId, usingBatch>
BitString<isSecret, schedulerId, usingBatch>::operator^(
const BitString<isSecretOther, schedulerId, usingBatch>& src) const {
BitString<isSecret, schedulerId, usingBatch>::
BitString<isSecret, schedulerId, usingBatch>::operator^(
const BitString<isSecretOther, schedulerId, usingBatch>& src) const {
if (src.size() != size()) {
throw std::runtime_error(
"The two BitStrings need to have the same length for bit-wise XOR");
Expand Down