Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
liss-h committed Dec 13, 2023
1 parent fb7c45c commit 8e488cc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/code_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: |
mkdir build
cd build
cmake -DBUILD_TESTING=ON -DBUILD_EXAMPLES=ON -DWITH_SODIUM=ON .. && make -j
cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON -DBUILD_EXAMPLES=ON -DWITH_SODIUM=ON .. && make -j
env:
CC: ${{ steps.install_cc.outputs.cc }}
CXX: ${{ steps.install_cc.outputs.cxx }}
Expand Down
3 changes: 3 additions & 0 deletions src/dice/hash/blake/Blake2Xb.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ namespace dice::hash::blake2xb {
data.size());
// cannot fail, see: https://github.com/jedisct1/libsodium/blob/8d9ab6cd764926d4bf1168b122f4a3ff4ea686a0/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c#L263
assert(res == 0);
(void) res;
}

/**
Expand Down Expand Up @@ -282,6 +283,8 @@ namespace dice::hash::blake2xb {
pos += len;
remaining -= len;
}

(void) res;
}

/**
Expand Down
1 change: 1 addition & 0 deletions src/dice/hash/lthash/MathEngine_SSE2.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef DICE_HASH_MATHENGINE_SSE2_HPP
#define DICE_HASH_MATHENGINE_SSE2_HPP

#include <cassert>
#include <cstddef>
#include <cstdint>
#include <span>
Expand Down

0 comments on commit 8e488cc

Please sign in to comment.