Skip to content

Commit

Permalink
Adding cassert a la #14
Browse files Browse the repository at this point in the history
  • Loading branch information
aure committed Jun 19, 2023
1 parent ce46ce4 commit 5718ef0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "EnvelopeGeneratorBase.h"
#include <cmath>
#include <cassert>

namespace DunneCore
{
Expand Down
1 change: 1 addition & 0 deletions Sources/CDunneAudioKit/DunneCore/Synth/WaveStack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "WaveStack.h"
#include "kiss_fftr.h"
#include <cassert>

namespace DunneCore
{
Expand Down
2 changes: 1 addition & 1 deletion Tests/DunneAudioKitTests/GenericNodeTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class GenericNodeTests: XCTestCase {
}

func testEffects() {
nodeParameterTest(md5: "1f023474b6150286e854485f00a0d1b4", factory: { input in Flanger(input) })
nodeParameterTest(md5: "b09c41cdef96fb4cfe89c34c5262e9d2", factory: { input in Flanger(input) })
nodeParameterTest(md5: "2d667d22162edd87d6ae8ec8bfccc77e", factory: { input in StereoDelay(input) })
}
}

0 comments on commit 5718ef0

Please sign in to comment.