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:
parent
c7e8475f57
commit
04c0fc093c
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue