Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
s0l0ist committed Sep 30, 2024
1 parent 7b8c034 commit 6a7ac9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-24.04, macos-14]
golang-version: ['1.21', '1.22', '1.23']
golang-version: ['1.23']
steps:
- name: Set up Golang ${{ matrix.golang-version }}
uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion private_set_intersection/cpp/datastructure/golomb.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ __forceinline static int bsf(unsigned int x) {
#define CTZ(x) __builtin_ctz(x)
#endif

#define DIV_CEIL(a, b) (((a) + (b)-1) / (b))
#define DIV_CEIL(a, b) (((a) + (b) - 1) / (b))

struct GolombCompressed {
int64_t div;
Expand Down

0 comments on commit 6a7ac9a

Please sign in to comment.