Skip to content

Commit

Permalink
MMVII: add [[maybe_unused]] attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
meynardc committed Jan 13, 2025
1 parent 2eda75b commit 12bd105
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_mmvii.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- if: ${{ steps.cache-mm3d-linux.outputs.cache-hit != 'true' }}
name: Build elise.lib and mm3d
run: make -C build install -j 4
run: make -C build install -j 4 -k

- name: Configure CMake for MMVII
run: cmake -S MMVII -B MMVII/build -DCMAKE_BUILD_TYPE=Release
Expand Down
2 changes: 1 addition & 1 deletion MMVII/src/MMV1/FluxPtsMMV1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ class cDilateSetPoints
void DilateSet(std::vector<cPt2di> & aRes,const std::vector<cPt2di> & aSet0);

private :
tREAL8 mRay;
tREAL8 mRay [[maybe_unused]];
tREAL8 mRAR;
std::vector<cPt2di> mDisk0;
mutable std::vector<std::vector<cPt2di>> mTrans;
Expand Down

0 comments on commit 12bd105

Please sign in to comment.