1
0
Fork 0
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:
jules 2014-08-12 09:22:28 +01:00
parent d16e5f4e80
commit 7c61188bf9
4 changed files with 183 additions and 200 deletions

View file

@ -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)