Browse Source

Fixed a harmless compiler warning with newer versions of clang

tags/2021-05-28
hogliux 8 years ago
parent
commit
04c0fc093c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_cryptography/encryption/juce_BlowFish.cpp

+ 1
- 1
modules/juce_cryptography/encryption/juce_BlowFish.cpp 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
{


Loading…
Cancel
Save