Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/blame/commit/892b4ea545f6656f52094812823467c5aa5acd64/third-party/TeensyVariablePlayback/test/low_level/arraywav/ResamplingArrayWavFixture.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
MicroDexed/third-party/TeensyVariablePlayback/test/low_level/arraywav/ResamplingArrayWavFixture.h

24 lines
578 B

//
// Created by Nicholas Newdigate on 17/06/2021.
//
#ifndef TEENSY_RESAMPLING_SDREADER_RESAMPLINGARRAYWAVFIXTURE_H
#define TEENSY_RESAMPLING_SDREADER_RESAMPLINGARRAYWAVFIXTURE_H
#include "ResamplingArrayReader.h"
struct ResamplingArrayWavFixture {
ResamplingArrayWavFixture() {
resamplingArrayReader = new newdigate::ResamplingArrayReader();
}
~ResamplingArrayWavFixture() {
delete resamplingArrayReader;
}
newdigate::ResamplingArrayReader * resamplingArrayReader;
};
#endif //TEENSY_RESAMPLING_SDREADER_RESAMPLINGARRAYWAVFIXTURE_H