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

24 lines
538 B

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