Browse Source

Try to workaround clang complaining

Signed-off-by: falkTX <falktx@falktx.com>
pull/421/head
falkTX 2 years ago
parent
commit
ff79a8c061
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      distrho/DistrhoDetails.hpp

+ 3
- 3
distrho/DistrhoDetails.hpp View File

@@ -236,18 +236,18 @@ enum PredefinedPortGroupsIds {
/**
Null or unset port group.
*/
kPortGroupNone = (uint32_t)-1,
kPortGroupNone = static_cast<uint32_t>(-1),

/**
A single channel audio group.
*/
kPortGroupMono = (uint32_t)-2,
kPortGroupMono = static_cast<uint32_t>(-2),

/**
A 2-channel discrete stereo audio group,
where the 1st audio port is the left channel and the 2nd port is the right channel.
*/
kPortGroupStereo = (uint32_t)-3
kPortGroupStereo = static_cast<uint32_t>(-3)
};

/**


Loading…
Cancel
Save