Skip to content

Commit

Permalink
Update MidiGroup.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Psychlist1972 committed Feb 12, 2025
1 parent 305dcd1 commit 8ecd88e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/sdk-winrt-core/common/MidiGroup.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ The `MidiGroup` class is used to provide formatting and data validation for MIDI

## Constructors

| `MidiGroup(UInt8)` | Create a MidiGroup with the specified group Index (0-15) |
| `MidiGroup()` | Create a MidiGroup initialized with group Index 0 |
| `MidiGroup(UInt8)` | Create a MidiGroup with the specified group Index (0-15). C++ note: C++/WinRT creates a constructor which takes nullptr, as a result `MidiGroup(0)` will fail to compile if you have the compiler option set to equate 0 and nullptr. To avoid this, use `MidiGroup(static_cast<uint8_t>(0))` or simply `MidiGroup()` |

## Properties

Expand Down

0 comments on commit 8ecd88e

Please sign in to comment.