1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a harmless compiler warning with newer versions of clang

This commit is contained in:
hogliux 2017-07-11 14:35:12 +01:00
parent c7e8475f57
commit 04c0fc093c

View file

@ -311,7 +311,7 @@ int BlowFish::decrypt (void* data, size_t size) const noexcept
return -1;
}
bool BlowFish::apply (void* data, size_t size, void (BlowFish::*op) (uint32&, uint32&) const noexcept) const
bool BlowFish::apply (void* data, size_t size, void (BlowFish::*op) (uint32&, uint32&) const) const
{
union AlignedAccessHelper
{