Skip to content

Commit

Permalink
Working on CI failures
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Nov 22, 2024
1 parent 6108a73 commit 6580c64
Show file tree
Hide file tree
Showing 10 changed files with 231 additions and 283 deletions.
257 changes: 0 additions & 257 deletions modules/common/chowdsp_core/JUCEHelpers/juce_FixedSizeFunction.h

This file was deleted.

1 change: 0 additions & 1 deletion modules/common/chowdsp_core/chowdsp_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ BEGIN_JUCE_MODULE_DECLARATION
#include "JUCEHelpers/juce_ExtraDefinitions.h"
#include "JUCEHelpers/juce_MathsFunctions.h"
#include "JUCEHelpers/juce_FloatVectorOperations.h"
#include "JUCEHelpers/juce_FixedSizeFunction.h"
#include "JUCEHelpers/juce_Decibels.h"
#include "JUCEHelpers/juce_SmoothedValue.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ struct ChunkList
}
auto& operator*() const { return chunk->chunk[index_in_chunk]; }
};
auto begin() { return iterator<false> { &head_chunk }; }
auto end() { return iterator<false> { tail_chunk, tail_chunk->count }; }
auto begin() const { return iterator<true> { &head_chunk }; }
auto end() const { return iterator<true> { tail_chunk, tail_chunk->count }; }
[[nodiscard]] auto begin() { return iterator<false> { &head_chunk }; }
[[nodiscard]] auto end() { return iterator<false> { tail_chunk, tail_chunk->count }; }
[[nodiscard]] auto begin() const { return iterator<true> { &head_chunk }; }
[[nodiscard]] auto end() const { return iterator<true> { tail_chunk, tail_chunk->count }; }

private:
void grow_if_needed()
Expand Down
Loading

0 comments on commit 6580c64

Please sign in to comment.