Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/src/commit/72465802451ee1f8f651d423ab7cbdb3a9f3e572/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

23 lines
556 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 ResamplingArrayReader();
}
~ResamplingArrayWavFixture() {
delete resamplingArrayReader;
}
ResamplingArrayReader * resamplingArrayReader;
};
#endif //TEENSY_RESAMPLING_SDREADER_RESAMPLINGARRAYWAVFIXTURE_H