Rewrite constructor

The existing code looks like it's attempting to call another constructor, and seems to be creating a temporary object, which I don't think is the intention of the code.
This commit is contained in:
sukibaby
2025-04-25 22:20:11 -07:00
committed by teejusb
parent dddba8bbda
commit 4ae1b79578
+1 -4
View File
@@ -192,10 +192,7 @@ namespace StepParity {
int rowIndex = 0;
int columnCount = 0;
int noteCount = 0;
Row()
{
Row(0);
}
Row() : Row(0) {};
Row(int _columnCount)
{