Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Delete includes
  • Loading branch information
liorko87 committed Jul 12, 2018
1 parent bd8c3c1 commit 764f047
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions include/comm/Comm.hpp
Expand Up @@ -36,9 +36,6 @@
#include <string>
#include <iostream>
#include <condition_variable>
#include <cstdio>
#include <cstdlib>
#include <cstring>

namespace boost_ip = boost::asio::ip; // reduce the typing a bit later...
using IpAddress = boost_ip::address;
Expand Down
3 changes: 1 addition & 2 deletions include/primitives/Mersenne.hpp
Expand Up @@ -393,9 +393,8 @@ FieldType TemplateField<FieldType>::Random() {
unsigned long b;
if(elementSizeInBytes<=4)
b = prg.getRandom32();
else{
else
b = prg.getRandom64()>>(64-elementSizeInBits);
}

return GetElement(b);
}
Expand Down

0 comments on commit 764f047

Please sign in to comment.