mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Cleaned up a few places where four-char constants were used, to prevent warnings.
This commit is contained in:
parent
d16e5f4e80
commit
7c61188bf9
4 changed files with 183 additions and 200 deletions
|
|
@ -37,7 +37,7 @@ const char* const AiffAudioFormat::appleKey = "apple key";
|
|||
//==============================================================================
|
||||
namespace AiffFileHelpers
|
||||
{
|
||||
inline int chunkName (const char* const name) { return (int) ByteOrder::littleEndianInt (name); }
|
||||
inline int chunkName (const char* name) noexcept { return (int) ByteOrder::littleEndianInt (name); }
|
||||
|
||||
#if JUCE_MSVC
|
||||
#pragma pack (push, 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue