Skip to content

Commit

Permalink
Pull request to fix 'Makefile:127: recipe for target 'all' failed' (d…
Browse files Browse the repository at this point in the history
…ashpay#11)

* add 'mkdir build' in build instructions in README.md

* change 'std::set<const BLSPublicKey>' => 'std::set<BLSPublicKey>' to fix std:set overloaded error
  • Loading branch information
eyalron33 authored and mariano54 committed Aug 20, 2018
1 parent 5e43d3c commit 5ad4919
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ Cmake and a c++ compiler are required for building.
```bash
git submodule init
git submodule update
mkdir build
cd build
cmake ../
cmake --build . -- -j 6
Expand Down
2 changes: 1 addition & 1 deletion src/aggregationinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ void AggregationInfo::SortIntoVectors(std::vector<uint8_t*> &ms,
// Simple merging, no exponentiation is performed
AggregationInfo AggregationInfo::SimpleMergeInfos(
std::vector<AggregationInfo> const &infos) {
std::set<const BLSPublicKey> pubKeysDedup;
std::set<BLSPublicKey> pubKeysDedup;

AggregationTree newTree;
for (const AggregationInfo &info : infos) {
Expand Down

0 comments on commit 5ad4919

Please sign in to comment.