From 04c0fc093cd82adc9bd4a344f1ddf650d3057510 Mon Sep 17 00:00:00 2001 From: hogliux Date: Tue, 11 Jul 2017 14:35:12 +0100 Subject: [PATCH] Fixed a harmless compiler warning with newer versions of clang --- modules/juce_cryptography/encryption/juce_BlowFish.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_cryptography/encryption/juce_BlowFish.cpp b/modules/juce_cryptography/encryption/juce_BlowFish.cpp index 987caaa614..838ee089ce 100644 --- a/modules/juce_cryptography/encryption/juce_BlowFish.cpp +++ b/modules/juce_cryptography/encryption/juce_BlowFish.cpp @@ -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 {