Skip to content

Commit 8ba85fd

Browse files
committed
Fix missing value_proxy constructor argument
1 parent 81dbb4a commit 8ba85fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/value_disambiguation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ class same_category
317317
result_type operator()(ast::note &note)
318318
{ emplace_back(note, category, rational(1)); }
319319
result_type operator()(ast::rest &rest)
320-
{ emplace_back(rest, category); }
320+
{ emplace_back(rest, category, rational(1)); }
321321
result_type operator()(ast::chord &chord)
322322
{ emplace_back(chord, category, rational(1)); }
323323
result_type operator()(ast::moving_note &chord)

0 commit comments

Comments
 (0)