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

Tidied up a few bits of messy String concatenation

This commit is contained in:
jules 2017-12-05 12:03:30 +00:00
parent fccd229469
commit 51f6c5d01c
12 changed files with 49 additions and 56 deletions

View file

@ -601,14 +601,14 @@ struct FFTWImpl : public FFT::Instance
#if ! JUCE_DSP_USE_STATIC_FFTW
#if JUCE_MAC
const char* libsuffix = "dylib";
auto libName = "libfftw3f.dylib";
#elif JUCE_WINDOWS
const char* libsuffix = "dll";
auto libName = "libfftw3f.dll";
#else
const char* libsuffix = "so";
auto libName = "libfftw3f.so";
#endif
if (lib.open (String ("libfftw3f.") + libsuffix))
if (lib.open (libName))
#endif
{
Symbols symbols;