Skip to content

Commit

Permalink
Merge pull request #3744 from Jojo-Schmitz/signed_char
Browse files Browse the repository at this point in the history
Fix #273538: 2.3beta does not compile on some platforms (assumes signed char)
  • Loading branch information
anatoly-os committed Jun 22, 2018
2 parents d2522ee + 4de4b35 commit 6cfa473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/tremolo.h
Expand Up @@ -22,7 +22,7 @@ namespace Ms {
class Chord;

// Tremolo subtypes:
enum class TremoloType : char {
enum class TremoloType : signed char {
INVALID_TREMOLO = -1,
OLD_R8 = 0,
OLD_R16,
Expand Down

0 comments on commit 6cfa473

Please sign in to comment.