Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix MSVC compiler warnings #20022

Merged
merged 6 commits into from
Nov 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix MSVC build error
reg.: 'includeCrossStaffHeight': undeclared identifier (C2065)
  • Loading branch information
Jojo-Schmitz committed Nov 22, 2023
commit 677e19fdeb83907aa4504247d101a1dadff14a8a
2 changes: 1 addition & 1 deletion src/engraving/rendering/dev/tlayout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ void TLayout::layoutAmbitus(const Ambitus* item, Ambitus::LayoutData* ldata, con
}

void TLayout::layoutArpeggio(const Arpeggio* item, Arpeggio::LayoutData* ldata, const LayoutConfiguration& conf,
bool /*includeCrossStaffHeight*/)
bool includeCrossStaffHeight)
{
UNUSED(includeCrossStaffHeight);
//! NOTE Can be edited and relayout,
Expand Down