Skip to content

Commit

Permalink
Merge pull request #8 from hollance/master
Browse files Browse the repository at this point in the history
fix Xcode compilation errors
  • Loading branch information
Mrugalla authored Sep 26, 2023
2 parents df81798 + e1b7ab1 commit e81efa2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
**/Builds
**/JuceLibraryCode
**/build
**/build
**/.DS_Store

2 changes: 1 addition & 1 deletion NEL-19.jucer
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>

<JUCERPROJECT id="z7Rdwx" name="NEL" projectType="audioplug" useAppConfig="0"
addUsingNamespaceToJuceHeader="0" jucerFormatVersion="1" pluginFormats="buildStandalone,buildVST3"
addUsingNamespaceToJuceHeader="0" jucerFormatVersion="1" pluginFormats="buildAU,buildStandalone,buildVST3"
pluginName="NEL" pluginDesc="Creative Vibrato For Travellers"
pluginManufacturer="Florian Mrugalla" pluginVST3Category="Modulation"
pluginRTASCategory="32" pluginAAXCategory="32" pluginCharacteristicsValue="pluginWantsMidiIn"
Expand Down
6 changes: 3 additions & 3 deletions Source/dsp/Wavetable.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ namespace dsp
{
static constexpr Float MaxTablesF = static_cast<Float>(NumTables - 1);
using Table = Wavetable<Float, WTSize>;
using Func = Table::Func;
using Func = typename Table::Func;
using Tables = std::array<Table, NumTables + 1>;

Wavetable2D() :
Expand Down Expand Up @@ -211,7 +211,7 @@ namespace dsp
static constexpr Float NumTablesInv = static_cast<Float>(1) / static_cast<Float>(NumTables);

using Table = Wavetable2D<Float, WTSize, NumTables>;
using Func = Table::Func;
using Func = typename Table::Func;
using Funcs = std::array<Func, NumTables>;

void makeTablesWeierstrass()
Expand Down Expand Up @@ -295,4 +295,4 @@ namespace dsp
static constexpr int LFOTableSize = 1 << 11;
static constexpr int LFONumTables = (1 << 5) + 1;
using LFOTables = Wavetable3D<double, LFOTableSize, LFONumTables>;
}
}
4 changes: 2 additions & 2 deletions Source/oversampling/ConvolutionFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ namespace oversampling
struct ConvolutionFilter
{
using Convolution = Convolution<Float>;
using IR = Convolution::IR;
using IR = typename Convolution::IR;

ConvolutionFilter(Float _Fs = static_cast<Float>(1),
Float _cutoff = static_cast<Float>(.25), Float _bandwidth = static_cast<Float>(.25),
Expand Down Expand Up @@ -214,4 +214,4 @@ namespace oversampling
IR ir;
std::array<Convolution, 4> filters;
};
}
}

0 comments on commit e81efa2

Please sign in to comment.