Skip to content

Commit

Permalink
midi: Use cstdint instead of custom typedefs
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed May 19, 2021
1 parent 3d75693 commit f3c0296
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/controllers/midi/midimessage.h
Expand Up @@ -5,6 +5,7 @@
#include <QMetaType>
#include <QPair>
#include <QtDebug>
#include <cstdint>

#include "preferences/usersettings.h"

Expand Down Expand Up @@ -97,9 +98,6 @@ enum class MidiOpCode : uint8_t {
QDebug operator<<(QDebug debug, MidiOpCode midiOpCode);
uint qHash(MidiOpCode key, uint seed);

typedef unsigned int uint32_t;
typedef unsigned short uint16_t;

enum class MidiOption : uint16_t {
None = 0x0000,
Invert = 0x0001,
Expand Down

0 comments on commit f3c0296

Please sign in to comment.