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
4 changes: 2 additions & 2 deletions fbpcf/engine/tuple_generator/ITupleGenerator.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ class ITupleGenerator {
}

// get the vector of B bit shares
std::vector<bool> getB() {
const std::vector<bool>& getB() {
return b_;
}

// get the vector of C bit shares
std::vector<bool> getC() {
const std::vector<bool>& getC() {
return c_;
}

Expand Down